Support » Plugin: WordPress Gallery Plugin - NextGEN Gallery » NextGEN Gallery – When selected, photos are partially hidden by header and nav

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tammieearl

    (@tammieearl)

    I’m so sorry to “bump” this but I cannot find an edit button for my original post. I wanted to add that I THINK the problem started when I updated wordpress to 3.3.1. I am almost positive it was working properly before the update. Does that help?

    Z-index of div#branding is higher than the slideshow’s own elements (they are between 1000-1002), that’s why they are under it.

    Edit style.css either with your preferred editor or in Admin Panel. Find this:

    /* =Header
    ----------------------------------------------- */
    
    #branding {
    	border-top: 2px solid #bbb;
    	padding-bottom: 10px;
    	position: relative;
    	z-index: 9999;
    }

    and change z-index below 1000:

    /* =Header
    ----------------------------------------------- */
    
    #branding {
    	border-top: 2px solid #bbb;
    	padding-bottom: 10px;
    	position: relative;
    	z-index: 999;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘NextGEN Gallery – When selected, photos are partially hidden by header and nav’ is closed to new replies.