Visual LightBox
One thumbnail in slideshow for web
Q: Hello,
I try your system for lighbox galeries and like it. But is there a way to automate the fact that i just want to have 1 Thumb for an album ?
So just click that one thumb to open the lightbox album.
A: Use the following parameter to hide thumbnails you don't want to display on the page:
style="display: none;"
for example:
<!-- Start VisualLightBox.com BODY section -->
<div id="vlightbox">
<a class="vlightbox" href="data/images/9.jpg" title="9">
<img src="data/thumbnails/9.jpg" alt="9"/></a>
<a class="vlightbox" href="data/images/7.jpg" title="7" style="display: none;">
<img src="data/thumbnails/7.jpg" alt="7"/></a>
<a class="vlightbox" href="data/images/10.jpg" title="10" style="display: none;">
<img src="data/thumbnails/10.jpg" alt="10"/></a>
</div>
<!-- End VisualLightBox.com BODY section -->