Page 1 of 1
Textarea in foms (usin form builder)
Posted: Fri Apr 20, 2007 8:25 pm
by katik
Text area is BIG and I have tried to find "something or some place" to fix it but without any luck. I use module form and its form builder and I need to get that textarea smaller.
Can someone - anyone HELP me. I'm a beginner with cms, so be patient with me
Kati
Re: Textarea in foms (usin form builder)
Posted: Fri Apr 20, 2007 11:32 pm
by Nullig
You can add:
Code: Select all
textarea {
width: 250px; /* <-- change this to whatever works for you */
}
to your stylesheet, which would set the width for ALL textarea fields on your site, or
Code: Select all
.formbuilderform textarea {
width: 400px; /* <-- change this to whatever works for you */
height: 60px; /* <-- change this to whatever works for you */
}
which will only change formbuilder form fields.
Nullig
Re: Textarea in foms (usin form builder)
Posted: Sat Apr 21, 2007 10:35 am
by katik
THANK YOU!
It is so easy when you can! What makes it easy for me to smile, is that I'm learning all tihe time.
Kati
Re: Textarea in foms (usin form builder)
Posted: Sat Apr 21, 2007 4:44 pm
by Nullig
You're welcome.
I'm sure you'll enjoy using CMSMS, as it is so easy to learn and use.
Nullig