• I recently took over managing a site that someone else had created. I am trying to get the header to have a white background, versus the transparent background it is currently showing. Website is http://www.melspeak.com . Any help would be appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • There are a couple of things going on that you’ll need to do. The id hometrigger needs to have its link have a background color and the #header div will need to have a z-index set so it appears on top of the white background. eg.

    #hometrigger a {
    background: #FFF
    }
    
    #header {
    position:relative;
    z-index:100;
    }

    Thread Starter melroseintl

    (@melroseintl)

    Thanks! That fixed it, but now I’m seeing a transparent space between the header and body. Any recommendations on that?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Transparent Header in Twenty Eleven CSS’ is closed to new replies.