Page 1 of 1
how to change textarea col width feedback form
Posted: Sat Apr 08, 2006 6:23 pm
by loosefast
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
Posted: Sun Apr 09, 2006 11:02 am
by tsw
(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;
}
Re: how to change textarea col width feedback form
Posted: Wed Apr 12, 2006 6:39 pm
by loosefast
Thanks
I didn't know about the browser default being 80 cols!