Instead of:
Code:
<div><p>
Welcome to MyAV - The home of Australia's best deals in Audio Visual products!
</p>
<br />
<ul><li><h3>Pic1</h3>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg
<br/>
<a href="http://www.oceanicdistribution.com"></a></li><li><h3>Pic2</h3><span>http://www.myav.com.au/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span>
<br/>
<a href="http://www.oceanicdistribution.com"></a></li><li><h3>Pic3</h3><span>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span>
<br/>
<a href="http://www.oceanicdistribution.com"></a></li><li><h3>Pic4</h3>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg
<br/>
<a href="http://www.oceanicdistribution.com"></a></li></ul>
<div id="wrapper">
<div id="fullsize">
<div id="information">
<div id="imgprev" class="imgnav" title="Previous Image"></div>
<div id="imglink"></div>
<div id="imgnext" class="imgnav" title="Next Image"></div>
<div id="image"></div>
<div id="information">
<h3></h3>
<p></p>
</div>
</div>
</div>
<script type="text/javascript" src="/WebRoot/ntdb2/Shops/didi6439/MediaGallery/compressed.js"></script>
<script type="text/javascript">
$('slideshow').style.display='none';
$('wrapper').style.display='block';
var slideshow=new TINY.slideshow("slideshow");
window.onload=function(){
slideshow.auto=true;
slideshow.speed=4;
slideshow.link="linkhover";
slideshow.info="information";
slideshow.thumbs="";
slideshow.left="slideleft";
slideshow.right="slideright";
slideshow.scrollSpeed=4;
slideshow.spacing=5;
slideshow.active="#fff";
slideshow.init("slideshow","image","imgprev","imgnext","imglink");
}
</script></div>
<div class="Separator"></div>
Do like:
Code:
<div><p>
Welcome to MyAV - The home of Australia's best deals in Audio Visual products!
</p>
<ul id="slideshow">
<li>
<h3>Kiama Beach</h3>
<a href="http://www.oceanicdistribution.com"><span>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span></a>
<p>Nice Example 1</p>
</li>
<li>
<h3>Kiama Beach</h3>
<a href="http://www.oceanicdistribution.com"><span>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span></a>
<p>Nice Example 2</p>
</li>
<li>
<h3>Kiama</h3>
<a href="http://www.oceanicdistribution.com"><span>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span></a>
<p>Nice Example 3</p>
</li>
<li>
<h3>Kiama</h3>
<a href="http://www.oceanicdistribution.com"><span>/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg</span></a>
<p>Nice Example 4</p>
</li>
</ul>
<div id="wrapper">
<div id="fullsize">
<div id="imgprev" class="imgnav" title="Previous Image"></div>
<div id="imglink"></div>
<div id="imgnext" class="imgnav" title="Next Image"></div>
<div id="image"></div>
<div id="information">
<h3></h3>
<p></p>
</div>
</div>
</div>
<script type="text/javascript" src="/WebRoot/ntdb2/Shops/didi6439/MediaGallery/compressed.js"></script>
<script type="text/javascript">
$('slideshow').style.display='none';
$('wrapper').style.display='block';
var slideshow=new TINY.slideshow("slideshow");
window.onload=function(){
slideshow.auto=true;
slideshow.speed=9;
slideshow.link="linkhover";
slideshow.info="information";
slideshow.thumbs="";
slideshow.left="slideleft";
slideshow.right="slideright";
slideshow.scrollSpeed=4;
slideshow.spacing=5;
slideshow.active="#fff";
slideshow.init("slideshow","image","imgprev","imgnext","imglink");
}
</script></div>
<div class="Separator"></div>
That gets it sort of working. You are missing the support images:
left.gif
right.gif
scroll-left.gif
scroll-right.gif
which should be in:
/WebRoot/ntdb2/Shops/didi6439/MediaGallery/images/
Place those in that folder. You also need more than the one image for the slide show. Right now you only have:
/WebRoot/ntdb2/Shops/didi6439/MediaGallery/1.jpg
I'm not sure why, but the descriptions aren't showing up. I think you may have edited the style. If so, that could be preventing the descriptions from being seen. But it might be something else. And there's a non-fatal script error:
Code:
Error: element is null
Source File: http://www.myav.com.au/WebRoot/ntdb2/LightBox/js/prototype.js
Line: 1545
which I'm not sure yet what's causing it, or if it's even related to the slide show.
Bookmarks