Will have see how that form is built and <br> <p> in form that is why you getting so much space
thank you!
here it is:
<form action=”http://flochelle.com/cgi-bin/cgiemail/formtemplate.txt” method=”POST”>
<div align=”left”>name: <input maxlength=”100″ name=”yourname” size=”38″ type=”text” />
e-mail:
<input maxlength=”100″ name=”email” size=”38″ type=”text” />
phone:
<input maxlength=”100″ name=”phone” size=”38″ type=”text” />
package of interest: <input maxlength=”100″ name=”packageofinterest” size=”38″ type=”text” />
event date: <input maxlength=”100″ name=”eventdate” size=”38″ type=”text” />
event location: <input maxlength=”100″ name=”eventlocation” size=”38″ type=”text” />
number of guests: <input maxlength=”100″ name=”numberofguests” size=”8″ type=”text” />
how do you like your eggs? <input maxlength=”100″ name=” eggs” size=”50″ type=”text” />
message:
<textarea style=”height: 126px; width: 431px; margin: 2px;” cols=”36″ rows=”7″ name=”message”></textarea>
<input name=”success” type=”hidden” value=”http://flochelle.com/thank-you/” />
<input name=”submit” type=”submit” value=”Submit” /><input name=”reset” type=”reset” value=”Try again” />
</div>
</form></p>
(form is not working btw hehe 🙂
@govpatel is right; it is partly down to the paragraph tags in the form, and excessive bottom margins of the input fields;
try to add this to the bottom of style.css of your theme:
.page-id-6 .entry-content input { margin-bottom: 5px; }
.page-id-6 #content p { margin-bottom: 0; }
(only checked in firefox, not tested across other browsers)
this worked like a charm thank you so much!!!
..is there any way to make the the textereas to fill in smaller as well? (kind of slimmer?)
🙂
you could try some style like this:
.page-id-6 #content textarea { max-width: 270px; }
thanks again!
I tried but it worked only on the bottom textereas. I’m trying to affect all the other ones instead (to change their height!), but I’m not sure bout how to do that.
if anyone has any suggestion that would be fab 🙂
found a way 🙂 I put “Input” instead of “textarea”
thanks for your help!