IE 7 is the latest. I just didn't notice it because it is rather slight. I see it now though, and also see it in IE 6, though not in FF or Opera. Opera has some other issues with the layout. You have invalid HTML here:
Code:
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<td colspan=2>
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="orders@reefscavengers.com">
<input type="image" src="images/newlayout1_09.gif" align="center" border="0" width="42" height="19" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="display" value="1">
</td>
</form>
It should be:
Code:
<td colspan=2>
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="orders@reefscavengers.com">
<input type="image" src="images/newlayout1_09.gif" align="center" border="0" width="42" height="19" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="display" value="1">
</form>
</td>
Then the problem shows up in all browsers, which is actually a good thing, because now we can reliably fix it:
Code:
<td colspan=2>
<form style="margin:-3px 0;" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="orders@reefscavengers.com">
<input style="position:static!important;position:relative;top:1px;" type="image" src="images/newlayout1_09.gif" align="center" border="0" width="42" height="19" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="display" value="1">
</form>
</td>
<TD>
Bookmarks