That page is a mess:
On that page you have:
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'margin': '100px',
'width': '900px',
'background': 'white',
},
inc: 10, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 1,
neutral: 535,
savedirection: false
});
</script>
which doesn't correspond to any crawler markup on that page, get rid of it.
That leaves (as far as code to init a crawler goes):
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler2',
style: {
'padding': '100px',
'width': '1300px',
'height': '180px'
},
inc: 5, //speed - pixel increment for each iteration of this marquee's movement
mouse: 'cursor driven', //mouseover behavior ('pause' 'cursor driven' or false)
moveatleast: 2,
neutral: 150,
savedirection: true
});
</script>
Notice the highlighted width setting. The crawler is that wide in IE, so I don't really see any issue for IE as far as the width goes. Some other browsers are not even displaying the marquee's images (Safari 3 Win and Firefox 3 Win). I'm not certain why that is. Opera does seem to come closest to what I imagine is the intended display, but I have no idea why, in essence it should not. I can tell you that the page is invalid (don't get scared - just means that it doesn't follow standards). It has no DOCTYPE, encoding or opening HTML tag, which are either required (opening HTML tag) or recommended (encoding and DOCTYPE). And there are other validation problems with the page.
See the validator for more info on this:
http://validator.w3.org/check?uri=ht...Inline&group=0
You really need to have a valid page before we can sort this out. I tried in a local mock up in which I made the markup valid, but it crashes Firefox - There must be some other issue(s). But sometimes local mock ups fail simply because they are mock ups. I'll play with it a bit more when I have time. I'm thinking your script file may have issues, perhaps even related to the server. But I'm really at a loss at this point.
Bookmarks