Forums
This topic is locked
Extra space below form object
Posted 25 Jul 2003 22:57:21
1
has voted
25 Jul 2003 22:57:21 Mike Badger posted:
I have one annoying problem that I have seen for many years and wondered if there was a way to get rid of it. When I insert a form in this case a paypal add to cart button it puts an extra space below the graphic and throws the table out of wack and won't line up with the price/description cells. Does anyone know how to prevent this from happening? Replies
Replied 26 Jul 2003 13:02:50
26 Jul 2003 13:02:50 Owen Eastwick replied:
Pain isn't it.
You can cure it by moving the form tag inside the tr tag, I know this still works OK in Netscape 4.0, but can't say for certain with all browsers, for example:
Instead of:
<table>
<td>
<form>
<table>
<tr>
<td>Rhubarb</td>
<td>Foo</td>
</tr>
</table>
</form>
</td>
</table>
Try:
<table>
<td>
<table>
<tr>
<form>
<td>Rhubarb</td>
<td>Foo</td>
</form>
</tr>
</table>
</td>
</table>
Regards
Owen.
-------------------------------------------------------------------------------------------
Used programming books and web development software for sale (UK only): www.tdsf.co.uk/tdsfdemo/Shop.htm
Developer services and tutorials: www.drdev.net
Multiple Parameter UD4 / Access 2000 Search Tutorial: www.tdsf.co.uk/tdsfdemo/
You can cure it by moving the form tag inside the tr tag, I know this still works OK in Netscape 4.0, but can't say for certain with all browsers, for example:
Instead of:
<table>
<td>
<form>
<table>
<tr>
<td>Rhubarb</td>
<td>Foo</td>
</tr>
</table>
</form>
</td>
</table>
Try:
<table>
<td>
<table>
<tr>
<form>
<td>Rhubarb</td>
<td>Foo</td>
</form>
</tr>
</table>
</td>
</table>
Regards
Owen.
-------------------------------------------------------------------------------------------
Used programming books and web development software for sale (UK only): www.tdsf.co.uk/tdsfdemo/Shop.htm
Developer services and tutorials: www.drdev.net
Multiple Parameter UD4 / Access 2000 Search Tutorial: www.tdsf.co.uk/tdsfdemo/