Page 1 of 1

Formbuilder - TextArea

Posted: Tue Jan 30, 2007 9:24 pm
by helpme
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..

Re: Formbuilder - TextArea

Posted: Wed Jan 31, 2007 5:03 am
by cyberman
helpme wrote: Its currently set to cols="80" but I cant find where to change it..........?
You can use CSS for that  ;) ...

Re: Formbuilder - TextArea

Posted: Wed Jan 31, 2007 2:30 pm
by helpme
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

Re: Formbuilder - TextArea

Posted: Wed Jan 31, 2007 3:32 pm
by Dr.CSS
Try...

.formbuilderform textarea {width:300px}  or whatever width you need... CSS doesn't understand 'col:50'...

Re: Formbuilder - TextArea

Posted: Wed Jan 31, 2007 6:39 pm
by helpme
doh! As per usual always so simple when u know the answer!  Thanks. 

Re: Formbuilder - TextArea

Posted: Sat Mar 03, 2007 9:58 pm
by mktdom
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

Re: Formbuilder - TextArea

Posted: Tue Mar 06, 2007 10:44 am
by RonnyK
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

Re: Formbuilder - TextArea

Posted: Wed Oct 31, 2007 9:40 am
by mrasch
Yes- that works! Thanks.

Re: Formbuilder - TextArea

Posted: Fri Jan 16, 2009 2:52 pm
by kelsay
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

Posted: Sat Jan 17, 2009 6:50 am
by cyberman
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

Code: Select all

textarea {
   width: 300px;
   height: 15em;
}
all textareas get this format.

Re: Formbuilder - TextArea

Posted: Sat Jan 17, 2009 12:41 pm
by kelsay
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.

Re: Formbuilder - TextArea

Posted: Mon Jan 19, 2009 6:01 am
by cyberman
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.
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

Code: Select all

textarea {
   width: 300px;
   height: 15em;
}
all textareas get this format.
You have to add this to your associated stylesheet (admin, Layout > Stylesheet), not to module sources.

Re: Formbuilder - TextArea

Posted: Mon Jan 19, 2009 11:03 am
by JayDee
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

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

Posted: Wed Jan 21, 2009 8:06 am
by kelsay
OK, thank you both for your help. Currently I'm using FeedbackForm, I guess I'll give Forumbuilder a go.

Re: Formbuilder - TextArea

Posted: Thu Jan 22, 2009 1:18 am
by Dr.CSS
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...