Formbuilder - TextArea
Formbuilder - TextArea
I am using the latest version of the formbuilder module and using the TextArea field - could someone please tell me where I can edit the TextArea cols width? Its currently set to cols="80" but I cant find where to change it..........?
Thanks..
Thanks..
Re: Formbuilder - TextArea
You can use CSS for thathelpme wrote: Its currently set to cols="80" but I cant find where to change it..........?

Re: Formbuilder - TextArea
Thanks for your reply - but am still stuck with this....
if my html source is:-
Name
Email Address
What would you put in the css? I tried this - but doesnt work:-
.formbuilderform td {cols:50;}
Also I see you have said to someone having a similar problem as myself in a previous post to set
#(optional) style - to false - where do i do this?
Thanks.
Donna
if my html source is:-
Name
Email Address
What would you put in the css? I tried this - but doesnt work:-
.formbuilderform td {cols:50;}
Also I see you have said to someone having a similar problem as myself in a previous post to set
#(optional) style - to false - where do i do this?
Thanks.
Donna
Re: Formbuilder - TextArea
Try...
.formbuilderform textarea {width:300px} or whatever width you need... CSS doesn't understand 'col:50'...
.formbuilderform textarea {width:300px} or whatever width you need... CSS doesn't understand 'col:50'...
Re: Formbuilder - TextArea
doh! As per usual always so simple when u know the answer! Thanks.
Re: Formbuilder - TextArea
Should anyone would help me how to do this, step by step please.
I saw at least three topics about this and about .formbuilderform textarea {width:300px} i tried but unsuccessfully.
Thx
I saw at least three topics about this and about .formbuilderform textarea {width:300px} i tried but unsuccessfully.
Thx
Re: Formbuilder - TextArea
I just put the following code in the CSS
textarea {
width: 300px;
height: 15em;
}
in both feedbackform and formbuilder does thist work as the textarea is called textarea in both.
Ronny
textarea {
width: 300px;
height: 15em;
}
in both feedbackform and formbuilder does thist work as the textarea is called textarea in both.
Ronny
Last edited by RonnyK on Tue Mar 06, 2007 10:51 am, edited 1 time in total.
Re: Formbuilder - TextArea
Yes- that works! Thanks.
Re: Formbuilder - TextArea
Where exactly in Feedbackform can I find this textarea bit? I have gone over several files, after downloading with FTP, but I can ot find it. I need some help please.
Re: Formbuilder - TextArea
You have to look at html soure - there you will find several css id and classes. The format must be added to your stylesheet. With
all textareas get this format.
Code: Select all
textarea {
width: 300px;
height: 15em;
}
Re: Formbuilder - TextArea
In the /modules/FeedbackForm folder I see;
- classes
- images
- includes
- lang
- output
- templates
feedbackform.module.php
index.html
method.install.php
method.unistall.php
method.upgrade.php
I won't write down the files in the folders
So, can you tell me which HTML file as there are mostly .php files.
- classes
- images
- includes
- lang
- output
- templates
feedbackform.module.php
index.html
method.install.php
method.unistall.php
method.upgrade.php
I won't write down the files in the folders

So, can you tell me which HTML file as there are mostly .php files.
Re: Formbuilder - TextArea
The thread topic is around Formbuilder and not FeedbackForm (like your posting). FormBuilder is the follower of FeedbackForm.
PS: I meant the source of your home page.
PS: I meant the source of your home page.
You have to add this to your associated stylesheet (admin, Layout > Stylesheet), not to module sources.cyberman wrote: You have to look at html soure - there you will find several css id and classes. The format must be added to your stylesheet. With
all textareas get this format.Code: Select all
textarea { width: 300px; height: 15em; }
Re: Formbuilder - TextArea
About finding the right css class,
When creating or editting a form, FormBuilder gives you the option to set the css-class yourself. This class will be wrapped around your form elements. This what you can set individual styles for seperate forms. So check whats in there and then add the next piece of css to your stylesheet. You can also set other elements
When creating or editting a form, FormBuilder gives you the option to set the css-class yourself. This class will be wrapped around your form elements. This what you can set individual styles for seperate forms. So check whats in there and then add the next piece of css to your stylesheet. You can also set other elements
Code: Select all
.CLASS_YOU_JUST_CHECKED textarea { /* This is the big textbox */
width: 20em;
heiight: 10em;
}
.CLASS_YOU_JUST_CHECKED input { /* These are the small textfields, selectboxes, buttons */
border: 1px solid black;
background-color: none;
}
Re: Formbuilder - TextArea
OK, thank you both for your help. Currently I'm using FeedbackForm, I guess I'll give Forumbuilder a go.
Re: Formbuilder - TextArea
Feed back Form is not supported any more, I'm surprised it even installed on 1.5.*, you are using the latest ver. of CMS Made Simple...