Is it possible to change position of jquery fullscreen gallery 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;

Related