sacredapproach.com/images/gracefeet.jpg
is 404 Not Found. I imagine so are several of the other images. But it's the first one that's essential in initializing the slideshow. In IE, if any image is missing, that might break it. In others, just the first one and one other is required to at least see something.
Now, there is a file:
sacredapproach.com/images/GraceFeet.jpg
Upper and lower case in paths, filenames and extensions almost always matter on the web and almost never matter on the local machine.
So all you probably need to do is to make the on page code here:
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [300, 300], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/gracefeet.jpg"],
["images/mudfairy.jpg"],
["images/grinchsylvia.jpg"],
["images/campkatie.jpg"],
["images/biglittle.jpg"],
["images/Willa.jpg"],
["images/MomMarathon1.jpg"],
["images/Kyranybeads.jpg"],
["images/kittybelly.jpg"],
["images/maymehat.jpg"]
],
displaymode: {type:'auto', pause:7000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 2000, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
agree with the filenames on the server. You can do that by either renaming the files on the server to the names in the code, or by changing the names in the code to the actual filenames on the server.
Bookmarks