• Hi I am using child theme wordpress twenty eleven and am trying to remove the grey border at the bottom of my header. Here is my page seeyouanon.com

    Would appreciate any help you can give me to do so. Thanks in advance

Viewing 5 replies - 1 through 5 (of 5 total)
  • try adding this to your stylesheet

    #header nav#access{
        box-shadow:none;
    }
    Thread Starter seeyouanon

    (@seeyouanon)

    Thanks ery much Lemu. Unfortunately it is not working. Any other ideas?

    Try this instead:

    header nav#access{
        box-shadow:none;
    }

    there is a
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    originating in line 555 of #access of style.css in
    your them. you will have to overwrite that in your
    child theme as suggested above.

    Thread Starter seeyouanon

    (@seeyouanon)

    That is really brilliant – thanks all. I just included this in my child theme and the box shadow disappeared. Many thanks all.

    header nav#access{
    box-shadow:none;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing Grey Border in Header’ is closed to new replies.