Is it possible to display one thumbnail in video jquery lightbox?

Q: Hello! VisualLightBox (VLB) would work EXCEPT that: The final product, when the VLB shortcode is inserted into a page or post, is that a thumbnail of ALL pictures contained in the gallery are displayed on that page/post. I do not want ALL the thumbnails displayed -- I only want one, preferably the thumbnail of the first picture in the gallery.

Is this possible?

A: Yes, it's 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