views:

392

answers:

1

I'm working on a gallery, which use jQuery Lighbox 2 (plugin page). I have the problem, that the navigation entries are also visible, when an image is selected (see example here). For the navigation i'm using css menu. Can someone tell me, how to make the enties invisible, when an image was selected?

+1  A: 

Set z-index to 5000. in the file lightbox.css

Example:

#lightbox {
    left:0;
    line-height:0;
    position:absolute;
    text-align:center;
    width:100%;
    z-index:5000; /* move the lightbox above all other elements */
}
powtac
thanks.....it works now :)
cupakob