how to change textarea col width feedback form
how to change textarea col width feedback form
Does anybody know how to change textarea col width feedback form. Its stuck at 80 cols and 15 rows, I looked at TextAreaInput.class.php, but can't see a setting there...
Re: how to change textarea col width feedback form
(iirc it's not specified and browsers default to 80 cols)
You could check out its id (or class) and use css to style size for it
something like
#content textarea
{
width:40em;
height:5em;
}
You could check out its id (or class) and use css to style size for it
something like
#content textarea
{
width:40em;
height:5em;
}
Re: how to change textarea col width feedback form
Thanks
I didn't know about the browser default being 80 cols!
I didn't know about the browser default being 80 cols!

