That's z-index. It would go anywhere in the style declaration, like so:
Code:
style="z-index:0;position: absolute; top: 40; left: 100;"
Unfortunately, that won't do much because 0 is the default. If you set the z-index to -1 the image will disappear behind the background of the page. What you need to do is set the z-index of the elements containing the elastic trails to say 10. In one version of that script here on DD, that would mean doing this:
Code:
<div id="dot0" style="z-index:10;position: absolute; visibility: hidden; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot1" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot2" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot3" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot4" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot5" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
<div id="dot6" style="z-index:10;position: absolute; height: 11; width: 11;">
<img src="bullet.gif" height=11 width=11>
</div>
Bookmarks