Hi,
I want to resize the comment box - using CSS - to make it smaller and less prominent.
I have a TwentyEleven child theme, Running WP 3.3.
I managed to resize the width of the box with this rule:
#comments {
width:70%;
}
But I can't seem to adjust the height of the commentbox. Most importantly the height of the textarea. I've tried stuff like:
#respond textarea #comment {
height:200px;
}
And quite some variations.
I'm using chrome & firefox with Firebug to debug.
But the height of the comment box seems calculated. And not defined with a CSS rule I can adjust. Adding a new rule doesn't do the trick, since it seems the rule is being overruled by the calculations. I can't figure out where or when this calculation takes place.
Any ideas on resizing the commentbox height?