There are a lot of versions of the trusty Lightbox. Whatever version you might need to boost the z-index values for both the lightbox and the overlay divs. These go by slightly different names in various versions. If you're using the most recent version, 2.51, then the css looks like so:
Code:
/* line 6, ../sass/lightbox.sass */
#lightboxOverlay {
position: absolute;
top: 0;
left: 0;
z-index: 99999;
background-color: black;
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
opacity: 0.85;
display: none;
}
/* line 15, ../sass/lightbox.sass */
#lightbox {
position: absolute;
left: 0;
width: 100%;
z-index: 100000;
text-align: center;
line-height: 0;
font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
font-weight: normal;
}
/* line 24, ../sass/lightbox.sass */
#lightbox img {
width: a . . .
Try adding the red 9 and 0 as shown. You may need to add more than one to each.
The browser cache may need to be cleared and/or the page refreshed to see changes.
I say might though because if your menu is Flash based, you may have to adjust it so that it uses wmode transparent or opaque.
I can't really tell the exact z-index required nor if the menu is Flash based, nor if it is, what the best way of applying wmode to it would be without seeing the page. If it is Flash based and part of a CMS, that could get tricky.
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks