There is a coding error, this has nothing to do with the problem but, should be fixed, here:
Code:
script type="text/javascript">
//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)
new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
document.write("<br />")
new pausescroller(pausecontent2, "pscroller2", "someclass", 2000)
</script></td>
Since you are using only one scroller on the page, the red part above which refers to a second scroller should be removed.
Now the layout problem that you are experiencing is happening because FF interprets this:
Code:
<td height="425" nowrap><table width="100%" height="398" border="0" cellpadding="0" cellspacing="0" id="producttable" >
which is technically valid (not sure why IE ignores it), to mean don't wrap any text after here. That is exactly what is happening in your scroller, no text wrapping. Just get rid of it (the nowrap).
Bookmarks