I see two things, first - in your settings for the crawler:
Code:
<script type="text/javascript">
marqueeInit({
uniqueid: 'mycrawler',
style: {
'padding' : '0px',
'width': 'auto',
'height': '150px'
},
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>
The highlighted should probably be '100%'. But this isn't as important as the next issue, and may only matter in some browsers, perhaps no browsers.
Next (this one's very important for all browsers), the crawler cannot crawl very far (be very wide) unless it has enough images to fill itself out. I see you have 6 images set for it in the source code, but only 2 of these (2.jpg and 3.jpg) appear to actually be on the server. There could be any number of reasons for this. You may have forgotten to upload them, uploaded them to the wrong place, they could be corrupted, or their filenames or paths may be a mismatch as to upper and lower case or spelling. Upper and lower case matter on the host, not so on the local computer.
With just these two images to work with, the crawler cannot be any wider than it is in Firefox. With a setting of 'auto' for the width, it is possible that some other browsers just allow that to be the same as 0, but in Oprea at least, it looks as though the width is fine, but that the marquee has only partially initialized. This is probably due to the missing images. In many browsers, if any of the images are missing the entire marquee will fail to initialize fully.
Bookmarks