• Resolved tjerk79

    (@tjerk79)


    Hi,

    I’m customizing the blogstar theme and having trouble with the header image. It doesn’t only show in the header but also in the header menu. Where in the css can I resolve this? I just can’t find it.

    The website is: shows grass in the header but also in the menu how do i get rid of it?

Viewing 2 replies - 1 through 2 (of 2 total)
  • melinda a11n

    (@melindahelt)

    Automattic Happiness Engineer

    Add

    background-repeat: repeat-x;

    to your #header ID in your CSS sheet and it will keep the graphic from repeating into the navigation section.

    So your entire #header CSS should read:

    #header {
        z-index: 10000;
        width: 100%;
        margin: 0;
        background-image: url('../images/header-images.png');
        background-repeat: repeat-x;
    }

    Hope this helps!

    Thread Starter tjerk79

    (@tjerk79)

    Thanks for your help it worked

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘header image also in header-menu bar’ is closed to new replies.