Ok, well since I'm not really a JavaScript guru I can see what you mean and I can see that the top style property is being set in the following code:
Code:
// calculate top and left offset for the lightbox
var arrayPageScroll = document.viewport.getScrollOffsets();
var lightboxTop = arrayPageScroll[1] + (document.viewport.getHeight() / 10);
var lightboxLeft = arrayPageScroll[0];
this.lightbox.setStyle({ top: lightboxTop + 'px', left: lightboxLeft + 'px' }).show();
this.changeImage(imageNum);
But wouldn't really know where to go from here after putting in the if (window.opera) { }
Bookmarks