Remove shadow under menu bar in twenty eleven

  • Unknown's avatar

    Hi. I successfully removed the shadow above the header in 2011 with this code (added to customised CSS revisions) supplied in another forum question.
    #branding {
    border-top: none;
    }
    I would like to remove the shadow under the menu bar too. Would that be similar code? I’m not sure if ‘bottom’ is the correct word to use, or if ‘border’ encompasses the menu bar, or just the header. Thank you. eg.
    #branding {
    border-bottom: none;
    }

    The blog I need help with is: (visible only to logged in users)

  • Hi Saskia,

    Not sure if this is what you’re looking for, but I believe you want the #access element, not #branding. In that case, we’re dealing with a shadow, not a regular border, and so the following rule should help:

    #access {
        box-shadow: none;
    }

    Let me know if this doesn’t do it!

  • Unknown's avatar

    Thank you so much! It worked a treat.

  • The topic ‘Remove shadow under menu bar in twenty eleven’ is closed to new replies.