• Resolved saveongolf

    (@saveongolf)


    Not sure what it is called exactly, but the rectangular box around the header area. (on my site the navigation and header tag line is inside it.) I want to just get rid of the line and shading so it all blends with the background. How can I do that?

    https://saveongolf.net

Viewing 2 replies - 1 through 2 (of 2 total)
  • The solution for this will probably require you to add some CSS to restyle your navigation if you want it to blend into the background.

    If this is something you are comfortable doing, add the following ‘code’ to your theme’s style sheet in Appearance => Editor. If you are willing to do a little learning, creating a child theme would be the optimal way to add the CSS. Some themes have a theme option to add custom CSS without going into the editor so I would suggest checking if you can do that first.

    .navbar .navbar-inner {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: none;
    }
    Thread Starter saveongolf

    (@saveongolf)

    Worked Great! Thanks so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘remove shaded box around header area’ is closed to new replies.