OK, I have given this some more thought as promised, and as it turns out most, if not all of this can be done in the lightbox.css file. For the overlay (now, this may need a little tweaking -additions/changes red):
Code:
#overlay{
position: absolute;
top: 112px!important;
left: 50%!important;
margin-left:-375px!important;
z-index: 90;
width: 750px!important;
height: 440px!important;
background-color: #000;
}
The !important keyword overrides the on the fly settings performed by the script, and this should put the overlay where you want it, sized like you want it, or at least very close. The left:50% puts the left edge of the overlay in the exact center, then the negative left margin of half the width of the overlay brings the overlay itself to dead center. The top, width, and height settings are self-explanatory. That leaves the lightbox itself. If all of the images are of the same height, or if you want all of the images to appear at the same distance from the top, you can set that here (once again, a little tweaking may be needed):
Code:
#lightbox{
position: absolute;
left: 0;
width: 100%;
z-index: 100;
text-align: center;
line-height: 0;
top:127px!important;
}
Otherwise the lightbox.js file would need to be edited. Play around with what I have put forth here, and I will look into possible modifications for lightbox.js if the top position of the lightbox needs to vary from image to image.
Bookmarks