Is it possible to hide some jquery gallery examples thumbnails?

Q: I have tried to find an answer in your faqs but have not seen anything about it.
Is there a possibility to have ONE gallery with e.g. 100 pictures, but not 100 thumbs at one site But e.g. 4 sites with 25 thumbs?

That's the only thing which I miss in your famous program, but still a reason not to buy a license.

A: 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