Page 1 of 1

contact form width

Posted: Tue May 08, 2007 2:24 pm
by johnl
Hi

I have installed the standard contact form and it looks and works well in firefox but in IEĀ  the whole form is very narrow.

Reading through the forum, I believe I have to change something in function.contact_form.php ?

What do I change to keep the width right in IE?

Thanks

Re: contact form width

Posted: Wed May 09, 2007 3:21 pm
by johnl
Anyone got any idea?

Thanks

Re: contact form width

Posted: Sun Jun 17, 2007 12:22 am
by designer0352
Look for this line:

$formStyle = 'style="width:520px; important; font-weight: bold;"'; // form

in the file function.contact_form.php in the plugin folder. The original width was expressed at 30em. I settled for a compromise by specifying the width in pixels. I just don't have time to try and code hacks for IE. It's enough to drive you to drink.

Mitch

Re: contact form width

Posted: Mon Jun 18, 2007 12:15 pm
by RonnyK
What about CSS-styling

Code: Select all

.formbuilderform textarea {
width: 390px;
height: 15em;
}
to have it styled specifically for FormBuilder, OR

Code: Select all

textarea {
width: 390px;
height: 15em;
}
to have all textareas smaller...

Ronny