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
contact form width
Re: contact form width
Anyone got any idea?
Thanks
Thanks
-
- Forum Members
- Posts: 14
- Joined: Mon Dec 04, 2006 1:45 am
Re: contact form width
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
$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
What about CSS-styling
to have it styled specifically for FormBuilder, OR
to have all textareas smaller...
Ronny
Code: Select all
.formbuilderform textarea {
width: 390px;
height: 15em;
}
Code: Select all
textarea {
width: 390px;
height: 15em;
}
Ronny