Forums

how to remove border around twenty eleven navigation bar menu (5 posts)

  1. WP Designer
    Member
    Posted 10 months ago #

    I want to remove all the borders on twenty eleven child theme and I cannot figure out how to remove a faint grey border around the navigation bar. I change the background color of the nav bar but the border still shows. Any ideas?

  2. sixhours
    Member
    Posted 10 months ago #

    First, create a child theme for your modifications so you don't change the Twenty Eleven theme.

    Then in the child theme's style.css, add the following:

    #access {
        box-shadow: none;
    }
  3. WP Designer
    Member
    Posted 10 months ago #

    thanks but still didn't do the trick?

  4. sixhours
    Member
    Posted 10 months ago #

    Hmm, I'd have to see your site to tell you more. It worked on my copy. :)

  5. brunotorresdotcom
    Member
    Posted 3 months ago #

    I was looking for the same thing.
    I tried pasting this into my child theme style.css and it worked.

    #access  {
    	-webkit-box-shadow: none;
    	-moz-box-shadow: none;
    	box-shadow: none;
    }

Reply

You must log in to post.

About this Topic