Click to See Complete Forum and Search --> : help: how to get rid of an extra space under my forms


floppy
02-19-2004, 10:38 AM
Hello
I don't manage to get rid of an extra space that appears in IE and Netscape under all of my forms :(

see my snapshot picture here:
http://www.sharemation.com/zimponpon123/extraspace.gif

Is there a way to get that space out ? I don't see any  , space or return left in my code - I also removed my CSS but that extra space doesn't leave :confused:

Could somebody please help ?

Thank you very much :)

<td align="right"><form name="Gotopagenumber" id="form1" method="get" action="index.php">
<table border="0" cellpadding="0" cellspacing="0" class="Blueform">
<tr align="center" valign="middle">
<td colspan="2"><img src="../images/GotoPageNr.gif" alt="Go to page nr" width="30" height="12" /></td>
</tr>
<tr valign="middle">
<td width="123" align="right"><input name="pageNum" type="text" id="pageNum2" size="4" maxlength="4" />
/ <strong> </strong> </td>
<td width="88" align="left"><input type="submit" name="Submit" value="Submit" /></td>
</tr>
</table>
</form></td>

CyCo
02-19-2004, 01:33 PM
<form name="Gotopagenumber" id="form1" method="get" action="index.php" style="margin:0">

or, in your style sheet...

<style type="text/css">
<!--
form {margin:0}
-->
</style>

floppy
02-19-2004, 04:01 PM
Wonderful - You made my day !!! :)

Thank you CyCo

(You can't imagine the time I spend on that @3*! extra space ;) )