Gradient / Overlay Bar On Home Page Header- Goran

  • I’d like to get rid of the semi-transparent grey bar in the header area of my home page (actually, preferably would like it gone on all pages). What would be the CSS code to accomplish this?
    Thanks!

  • Hi there, the translucent white you see on the main body of your site extends up to the very top, so if we get rid of the grey overlay, it is the same white and your title/logo disappears. You can add the following to your custom CSS to see what I mean.

    .hero-image .site-header {
      background: none;
    }

    You will have to redo your logo image with different text color, and then do something like this to change the color of the menu items to another color.

    .main-navigation a, .main-navigation a:hover, .main-navigation a:focus, .main-navigation a:active {
      color: #000;
      text-shadow: none;
    }
  • !hanks so much! I am still messing around with which theme I will settle on, but those worked perfectly!

  • You are welcome and happy theme hunting. :)

  • The topic ‘Gradient / Overlay Bar On Home Page Header- Goran’ is closed to new replies.