I want to show only one single miniature picture in image gallery website

Q: I am owner of the newest business version of Visual Lightbox and I have a
problem with my gallery.

At the webpage I want to show only one single miniature picture but want to
start the whole gallery with all the pics when somebody klicks on it.

Can you help me with this please? I already deleted the img source code of
the ones I want to hide, but in that way it leaves empty borders at the website for all the pics
included in the gallery.

Thanks in advance.

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

<a id="vlb" href="http://visuallightbox.com">Photo Gallery Creator by VisualLightBox.com v3.1</a>
<script src="engine/js/visuallightbox.js" type="text/javascript"></script>
</div>
<!-- End VisualLightBox.com BODY section -->

Related