View previous topic :: View next topic |
Author |
Message |
karrilee
Joined: 08 Sep 2009 Posts: 4
|
Posted: Sat Feb 20, 2016 1:07 pm Post subject: Gap Before Submit button |
|
|
how to i remove the big gap that lies between the final form question and the submit button? See my form @ http://www.mensswapmeet.info/request-vendor-table/
Thanks in advance  |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Mon Feb 22, 2016 3:40 am Post subject: Reply |
|
|
Your web authoring software appears to be adding extra line breaks to the code. If you look at the actual live HTML on the site, you will see the following line break elements in the code:
There is an extra one of these at each line of code for lines 194 through 198. These are the source of the extra white space in your form.
Line 194-198:
Code: |
<td style="background-color: #ffffff; padding: 5px; clear: left; margin: 0px;"><input id="user" name="user" type="hidden" value="karrilee" /><br />
<input id="formid" name="formid" type="hidden" value="431173" /><br />
<input id="subject" name="subject" type="hidden" value="Vendor Request" /><br />
<input name="submit" type="submit" value="Submit" /><br />
<input name="reset" type="reset" value="Reset" /></td> |
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
|