That doesn't look like the Dynamic Drive Fade-in Image slideshow found at:
http://www.dynamicdrive.com/dynamici...nslideshow.htm
Perhaps you would have better luck with that one. An added benefit to using the above mentioned script is that its fade-in effect will work in browsers other than IE. The key to avoiding an 'x' (it is really the 'broken image link symbol' and varies from browser to browser) is to have your images preloaded before the browser tries to display them and to have something to show folks while this is happening. I see the script you are using has a preload function but, it is a primitive one with no checking to see if preloading is complete before doing anything else. But, much more important, the image it shows folks while waiting (shown in red from a part of your code):
Code:
<a href="http://printstyleonline.com/originalindex.html"><img src="firstimage.gif" name="slide" border=0 style="filter:blendTrans(duration=3)"></a>
isn't there, change it to:
Code:
<a href="http://printstyleonline.com/originalindex.html"><img src="image1ps.JPG" name="slide" border=0 style="filter:blendTrans(duration=3)"></a>
and it should avoid the broken image symbol but, the first image will no longer appear to fade-in from nowhere. If you were to use a transparent .gif and name it firstimage.gif and upload it to:
http://printstyleonline.com/
then you wouldn't need to change the code at all and things should work fine.
Bookmarks