How to center a slideshow made with dynamic image gallery on my website

Q: Whenever I publish the photo galley to my website it ends up all the way to the left.
I would like to know how to center it. Can you send me detailed instructions?
I would like to know in detail how to input it.
I would also know how to center a slideshow made with Visual Lightbox on my website.
Once again, it ends up on the left hand side of the website. Why does it do that?

A: You should paste VisualLightBox BODY section in the <div></div>
tags and apply central alignment, for example:

<div align="center">

<!-- Start VisualLightBox.com BODY section id=1 -->
<div id="vlightbox1">
<a class="vlightbox1" href="data/images1/bruggie.jpg" title="Bruggie"><img src="data/thumbnails1/bruggie.jpg" alt="Bruggie"/></a>
<a class="vlightbox1" href="data/images1/german.jpg" title="German"><img src="data/thumbnails1/german.jpg" alt="German"/></a>
<a class="vlb" style="display:none" href="http://visuallightbox.com">jQuery Modal Popup by VisualLightBox.com v5.0</a>
</div>
<script src="engine/js/vlbdata1.js" type="text/javascript"></script>
<!-- End VisualLightBox.com BODY section -->

</div>

Related