0

我正在制作一个使用 jQuery Lightbox 2(插件页面)的画廊。I have the problem, that the navigation entries are also visible, when an image is selected ( see example here ). 对于导航,我使用的是 CSS 菜单。Can someone tell me, how to make the enties invisible, when an image was selected?

4

1 回答 1

1

z-index在文件 lightbox.css 中设置为 5000。

例子:

#lightbox {
    left:0;
    line-height:0;
    position:absolute;
    text-align:center;
    width:100%;
    z-index:5000; /* move the lightbox above all other elements */
}
于 2009-10-13T16:25:17.000 回答