• I am wondering if there is some code I can use to make sure that my drop-down menus float on top of the thumbnails.

    You see the problem at https://www.newwestagency.com/portfolio/advertising. Mouse over “Portfolio” and you’ll see that the bottom part of the navigation shows up behind the thumbnails.

    Any help/advice would be greatly appreciated.

    Thanks!

    Jay

Viewing 1 replies (of 1 total)
  • Had a similar issue with my CSS drop down menu plotted behind the NextGen Gallery thumbnails. It took several days of troubleshooting before I figured out the following solution:

    .ngg-gallery-thumbnail {
    /* deleted the following line, as it caused the gallery thumbs to be printed over other content in IE6 and IE7 */
    /* position:relative; */
    float: left;
    margin-right: 5px; text-align: center;
    }

    .ngg-gallery-thumbnail img {
    background-color:#FFFFFF;
    border:1px solid #A9A9A9;
    display:block;
    margin:4px 0px 4px 5px;
    padding:4px;
    /* deleted the following line, as it caused the gallery thumbs to be printed over other content in IE6 and IE7 */
    /* position:relative; */
    }

    Hope this helps

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: NextGEN Gallery] My drop-down menu gets hidden behind my gallery’ is closed to new replies.