Is it possible to have website gallery creator with different styles on different pages?

Q: I have unlimited websites license of VisualLightBox.
If I have two web pages, let's say:

www.example.com/page1.html
www.example.com/page2.html

and want to different style galleries, how do I do this?

When I update the gallery of one page, it changes the galleries of all the others :(

A: If you want use different styles (templates and settings) for your galleries you should save each gallery in its own directory, for example:

gal1/
gal2/
page1.html
page2.html
...

But notice that you should manually add 'gal1/' prefix before each path on your html page (in html code for lightbox gallery):

<!-- Start VisualLightBox.com HEAD section -->
<link rel="stylesheet" href=" gal1/engine/css/vlightbox1.css" type="text/css" />
<link rel="stylesheet" href=" gal1/engine/css/visuallightbox.css" type="text/css" media="screen" />
<script src=" gal1/engine/js/jquery.min.js" type="text/javascript"></script>
<script src=" gal1/engine/js/visuallightbox.js" type="text/javascript"></script>
<script src=" gal1/engine/js/vlbdata.js" type="text/javascript"></script>
<!-- End VisualLightBox.com HEAD section -->
...
<!-- Start VisualLightBox.com BODY section id=1 -->
<div id="vlightbox1">
<a class="vlightbox1" href=" gal1/data/images1/2.jpg" title="2"><img src=" gal1/data/thumbnails1/2.jpg" alt="2"/></a>
<a class="vlightbox1" href=" gal1/data/images1/3.jpg" title="3"><img src=" gal1/data/thumbnails1/3.jpg" alt="3"/></a>
<a class="vlb" style="display:none" href="http://visuallightbox.com">Photo Gallery Creator
by VisualLightBox.com v5.0.1</a>
</div>
<!-- End VisualLightBox.com BODY section -->

Related