Visual LightBox
-
html thumbnail image gallery Monochrome Theme with Round Window thumbnails
-
visual lightbox js Route Theme with Simple HTML Frame thumbnails
-
javascript create lightbox Modern Theme with Round Frame thumbnails
Is it possible to change position of online photo album sharing pop up window?
Q: I have just purchased Visual Lightbox and Visual Slideshow (and CSS3 Menus actually). I really like them and think they are excellent.
However, is it possible to change layouts where the main image appears above the thumbnails and aligned left?
A: You can reposition image popup window in the following way.
Open engine/js/visuallightbox.js file and find the following code:
var imgTop = getPageScroll().y + (getPageSize().winHeight -
(imgHeight + descriptionHeight + options.borderSize * 2)) / 2;
change it for example to:
var imgTop = getPageScroll().y + (getPageSize().winHeight -
(imgHeight + descriptionHeight + options.borderSize * 2)) / 2 - 100;