Is it possible to just see one thumbnail in lightbox image gallery, not the whole gallery thumbnails?

Q: I purchased the business edition for unlimited websites.
Now i hope you can give me advice.
Is it possible to just see one thumbnail, not the whole gallery thumbnails?

For example I have page with just one thumbnail, and when ih click on this
one, it should play the whole gallery pictures (without seeing the other
thumbnails before).

A: Yes, it is possible.
You can 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 id=1 -->
<div id="vlightbox1">
<a class="vlightbox1" href="data/images1/england.jpg" title="England"><img src="data/thumbnails1/england.jpg" alt="England"/></a>
<a class="vlightbox1" href="data/images1/france.jpg" title="France" style="display: none;"><img src="data/thumbnails1/france.jpg" alt="France"/></a>
<a class="vlightbox1" href="data/images1/german.jpg" title="Germany" style="display: none;"><img src="data/thumbnails1/german.jpg" alt="Germany"/></a>
...
<!-- End VisualLightBox.com BODY section -->

Related