Support » Fixing WordPress » Editing box shadown on nav bar Twenty Eleven

  • Resolved Sarah Cairncross

    (@sarahcairncross)


    I’ve installed a child theme and have been playing around with Twenty Eleven for a new site. I found instructions and managed to change the colour of the nav bar and center it. The box shadow line below the nav bar is great but what I’m trying to achieve is a thin grey line above and below the navigation.

    So… do I remove the box shadow completely and put in code to create horizontal lines above and below the nav bar? (How do I do this?)

    Or.. can I edit the box shadow so the lines at either end are gone and there is a mirror of the shadow that is below, above the nav bar?

    The site is http://chloecairncross.com

    Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try changing the #access code in your child theme to this:

    #access {
        background: none repeat scroll 0 0 white;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #000000;
        box-shadow: none;
        line-height: 0;
        text-align: center;
    }

    Change the color and width of the borders as you like.

    Thread Starter Sarah Cairncross

    (@sarahcairncross)

    WPyogi you are a STAR!!!! Thank you 😀

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Editing box shadown on nav bar Twenty Eleven’ is closed to new replies.