How do you make a images marquee so that when you hover over the image is pauses?
Question:
Answers:
<marquee scrollamount=10 direction="left" scrolldelay=20 onmouseover="this.stop()" onmouseout="this.start()" >
<img src="affiliate1.jpg">
<img src="affiiate2.jpg">
</marquee>
Adjust speed with the scrollamount and scrolldelay numbers
direction="right" changes direction (up and down also valid)
Normally your affiliate images would be surrounded by an anchor
(<a href=...><img src=...></a> so the buttons are clickable
More Affiliate Questions and Answers...