• Resolved lenkaiser

    (@lenkaiser)


    Issue #1: I’m creating a dark skin and for the life of me I cannot find where to edit the CSS to remove the bottom box-shadow (at least I think that is what is causing this issue). It creates a line directly under the header area where the logo and menu are at. The code for the box shadow is

    box-shadow: 0.5px 0.5px 0.5px rgb(234, 234, 234)

    Using Firebug the entire code is…

    <div class="flat_responsive_header header_one" style="background-color: rgb(0, 0, 0); position: relative; right: 0px; left: 0px; top: 0px; z-index: 1080; box-shadow: 0.5px 0.5px 0.5px rgb(234, 234, 234);">

    Issue #2: How do I remove the sidebar from the pages? I want to keep it on the blog posts pages, but want to remove it from the pages themselves including the front page.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Issue #1 To remove that box shadow, use this code in Custom CSS plugin (or in child theme stylesheet)

    .flat_responsive_header.header_one { box-shadow: none !important; }

    Issue #2 To remove sidebar from page, use theme’s full width page template. In the page editing screen, look over to the right and see the metabox with dropdown to pick page template. If you don’t see this metabox, pull down the tab at the top right corner and check/uncheck to bring it up.

    Thread Starter lenkaiser

    (@lenkaiser)

    Thanks paulwpxp both ideas worked just fine. 🙂

    Thread Starter lenkaiser

    (@lenkaiser)

    Sorry forgot to mark this resolved. *Sigh*

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Bottom Header Shadow & Sidebar Issue’ is closed to new replies.