You are using two versions of Ultimate Fade In Slide Show, version 1.51 for the first one on the page and version 2.1 for the second. This is a waste of code. You should use only one of these scripts for both slide shows. But you can do it like you have. In any case, the 2.1 script is better because the 1.51, even though it appears to behave well with Lightbox, uses escallating z-index values, so will eventually show up on top of the overlay. The version 2.1 script uses a range of z-indexes, but starts out relatively high, higher than the 90 of the overlay. I see you have increased the z-ndex value in lightbox.css for the #lightbox selector by a factor of 100. You should do so with the other two z-index values in that file, here:
Code:
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1000; }
And here:
Code:
#overlay{ position: absolute; top: 0; left: 0; z-index: 9000; width: 100%; height: 500px; background-color: #333333; border: 1px solid #333;}
Bookmarks