• Hello,
    I would like to remove the artistic border from the menu bar. In the custom settings I have disabled this, but it still is showing on my live page.

    See my live page here: Jamiedanno.com

    Thanks,
    Jamie

Viewing 4 replies - 1 through 4 (of 4 total)
  • Add this to your child theme’s style.css file:

    nav#main-nav > ul:before, nav#main-nav > ul:after {
       background: none;
    }

    Thread Starter jamiedanno

    (@jamiedanno)

    Sorry for the delay here, thanks so much! How would I apply this to my front page as well?
    See here:http://www.jamiedanno.com

    Hi, Jamie. I don’t see any borders around the menu on the home page. Or are you referring to the border around the page content? If you want to eliminate the border around the content on the front page, you can add this rule to your child theme’s style.css file (or your CSS plugin):

    .home .no-border #page {
        box-shadow: none;
    }

    If you want to remove the border around the content on all of your pages, then just remove the .home from the front of the rule selector.

    Thread Starter jamiedanno

    (@jamiedanno)

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove artistic border’ is closed to new replies.