Hi
I have tried to set up a manual fading slideshow. I have made the changes to the code and pasted them in per instructions. In iWeb I see the first image static (i.e. no fading or ability to change to the next photo). However, when i upload the files to my server, all I get is a blank page (except for my logo and menu).
I have looked through the code over and over and checked everything is where it should be (root etc) but I cannot get it to work.
Are you able to help please?
My Snippet code is shown below and a file is attached showing my file structure on the server.
Many thanks.
Simon
Here is my code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://simonharrisphotography.co.uk/fadeslideshow/fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (
http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at
http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1",
dimensions: [700, 466],
imagearray: [
["http://simonharrisphotography.co.uk/fadeimages/DSC_3655.jpg", "", "", "Description"],
["http://simonharrisphotography.co.uk/fadeimages/DSC_3668.jpg", "", "", "Description"],
["http://simonharrisphotography.co.uk/fadeimages/DSC_3675.jpg", "", "", "Description"],
["http://simonharrisphotography.co.uk/fadeimages/DSC_3713.jpg", "", "", "Description"],
["http://simonharrisphotography.co.uk/fadeimages/DSC_5575.jpg", "", "", "Description"],
["http://simonharrisphotography.co.uk/fadeimages/DSC_5584.jpg", "", "", "Description"]
],
displaymode: {type:'manual', pause:2500, cycles:0, wraparound:false, randomize:false},
persist: false,
fadeduration: 500,
descreveal: "always",
togglerid: "slideshowtoggler"
})
</script>
<div id="fadeshow1"></div>
<div id="slideshowtoggler" align="center">
<a href="#" class="prev"><img src="http://simonharrisphotography.co.uk/fadeslideshow/arrow_left.png" style="border-width:0" /></a> <span class="status" style="margin:0 275px; font-weight:bold"></span> <a href="#" class="next"><img src="http://simonharrisphotography.co.uk/fadeslideshow/arrow_right.png" style="border-width:0" /></a>
</div>