Just a wild guess, as I saw someone else complaining about what looks to be a similar issue try changing this:
HTML Code:
<td height="32" align="center" valign="middle">
<script src="/includes/affiliates.js">
//Drop-in slideshow II (hyperlinked)- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use
</script></td>
to:
HTML Code:
<td height="32" valign="middle" style="text-align:center!important;text-align:left">
<script src="/includes/affiliates.js">
//Drop-in slideshow II (hyperlinked)- By Dynamic Drive
//For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
//This credit MUST stay intact for use
</script></td>
You may have to use relative positioning to get it just so, something like:
Code:
style="text-align:center!important;text-align:left;position:relative:left:10px;"
adjusting the 10px to get it just so in IE. Mozilla will ignore relative positioning of a table cell.
One other thing, change the <table> tag that contains this cell temporarily to border=1 to make sure the cell is wide enough to contain 88px to begin with in IE.
Bookmarks