Changing Header Color

  • Unknown's avatar

    How can I change the header for my site to be plain white? Right now I’ve set it to be white but it looks like there’s automatically an overlay.

    The blog I need help with is: (visible only to logged in users)

  • Hi

    It looks like you already added the following code, which removed the background-image color from the homepage, but it’s still appearing on the other pages of your site.

    .home .header-bg {
        background-image: none;
    }

    If you edit the above code, so that it looks like the code below. that should remove the yellow background image form all pages.

    .home .header-bg,
    .header-bg {
        background-image: none;
    }

    Hope this helps!

  • The topic ‘Changing Header Color’ is closed to new replies.