Hi, The standard column width in text areas as generated by 'feedback form' appears to be 80. I can't change it in the module interface, so can anyone point me at the setting within the module php pages so I can hand reset it there.
Thanks!
text area in 'feedback form' how can i change the standard width
Re: text area in 'feedback form' how can i change the standard width
Take at look at page source and you will see a class for textarea. Than you can style via css (e.g. width: 40em).
Re: text area in 'feedback form' how can i change the standard width
aha! brilliant. ta.
Re: text area in 'feedback form' how can i change the standard width
In which stylesheet can I find that particular style? I've searched my eyes out of my head, but I really cannot find itscotch33 wrote: aha! brilliant. ta.

Code: Select all
<textarea name="m4ffbericht" cols="80" rows="15" class="user"></textarea>

Re: text area in 'feedback form' how can i change the standard width
This style doesn't exist. You have to add a new style like
for that.
Code: Select all
textarea.user {}
Re: text area in 'feedback form' how can i change the standard width
Thanks, so far I understand... However, in which stylesheet should I add that row?cyberman wrote: This style doesn't exist. You have to add a new style like
for that.Code: Select all
textarea.user {}


Code: Select all
textarea.user {
width: 20em;
}
Re: text area in 'feedback form' how can i change the standard width
By the way, in addition to my previous post: Shouldn't I use cols in stead of width? 

Re: text area in 'feedback form' how can i change the standard width
Nevermind, I've got it already! 
