I figured out how to fix it in IE and it will not hurt others. Use this for the markup and init:
Code:
<div class="marquee" id="slideshow">
<img src="/templates/vj_anelco/images/slideshow/1.jpg" alt=""><img src="/templates/vj_anelco/images/slideshow/2.jpg" alt=""><img src="/templates/vj_anelco/images/slideshow/3.jpg" alt=""><img src="/templates/vj_anelco/images/slideshow/4.jpg" alt=""><img src="/templates/vj_anelco/images/slideshow/5.jpg" alt="">
</div>
<script type="text/javascript">
marqueeInit({
uniqueid: 'slideshow',
style: { //style object for this marquee container (use quotes on both sides of the : as shown)
'width': '100%',
'height': '260px',
'color': '#fff',
'background-color': '#fff',
'font-family': 'sans-serif',
'margin': '0 auto'},
inc: 2, //speed - pixel increment for each iteration of this marquee's movement
mouse: false, //mouseover behavior ('pause' 'cursor driven' or false)
noAddedSpace: true
});
</script>
Add this to your stylesheet:
Code:
.marquee0 img {
margin: 0 6px;
}
I still haven't figured out the trouble with Opera, but oddly enough a local copy of the page displays fine in it. Must be something about how it is being served.
Bookmarks