Log in

View Full Version : Help, Help, Help!!!!



ikon
09-10-2007, 03:09 AM
the issue im having is with the height of the rows in the table on this page: www.reefscavengers.com/inverts.html

i want to be able to slim them down (make them smaller height-wise) but i think the issue is with the paypal coding behind the "add to cart" buttons in each row. for some reason there is a large gap below each add to cart button, making the rows to thick and un-editable, but this gap is not part of the cart button image and it is not created by line breaks below the image. anyone know how i can make my rows thinner?

kasei
09-11-2007, 05:13 PM
put the <form> and </form> tags, as well as any <input> tags that are hidden outside of the table.

for example:

<table>
<form method=post> <<< see? it's outside
<tr><td>
<input>
</td></tr>
</form> <<< see? it's outside
</table>

ikon
09-12-2007, 07:54 PM
many many thanks!