I'm not sure what your css problem is, but the version 2.0 script is much easier to control for what you want to do. The css issue can likely be worked out.
OK, to control version 2.0 manually to a particular image instead of just next/previous all you need is to call its navigate function with the number of the slide to go to (slides are numbered 0 to whatever).
So, let's say your slide show is defined:
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [468, 500], //width . . .
And has 5 images. To go to its 3rd image you would use:
Code:
mygallery.navigate(2);
To go to its 1st image:
Code:
mygallery.navigate(0);
etc. I think you get the idea. Then to make that a thumbnail you can click, there are various ways. The simplest would be something like so:
HTML Code:
<img src="thumb_1.jpg" onclick="mygallery.navigate(0);" alt="">
Many people prefer to use a link for this, if so:
HTML Code:
<a href="#" onclick="mygallery.navigate(0); return false;"><img src="thumb_1.jpg" alt=""></a>
Bookmarks