Hello!
I am trying to use formbuild to build many forms, but I have an issue. I cannot change the number of columns in the text fields, so they are too big for my layout. How can I change the size? I tried changing the settings from the configuration of each field, but the col value I set there does not seem to have any effect!
Thanks
FormBuilder: Change Textarea size
-
- Power Poster
- Posts: 424
- Joined: Sat Feb 02, 2008 12:42 am
Re: FormBuilder: Change Textarea size
Yes, I noticed the same after latest update as well.
Take a penny, leave a penny.
Re: FormBuilder: Change Textarea size
Try adding this code to your stylesheet:
you can change the values of width and height to meet your needs..
Code: Select all
textarea
{
width:400px;
height:200px;
}
Re: FormBuilder: Change Textarea size
Hi!
Because of some changes I found that You should add an "empty string" line to modules/FormBuilder/classes/TextAreaField.class.php after line 34.
More exactly: duplicate the line 34...
From this everything will work fine.
Because of some changes I found that You should add an "empty string" line to modules/FormBuilder/classes/TextAreaField.class.php after line 34.
More exactly: duplicate the line 34...
From this everything will work fine.
Last edited by [MaGuS] on Wed Jul 23, 2008 10:24 am, edited 1 time in total.
Re: FormBuilder: Change Textarea size
Thank you!
the additional empty string line is EXACTLY what i was looking for this whole rainy afternoon....
Jorge
the additional empty string line is EXACTLY what i was looking for this whole rainy afternoon....
Jorge