Viewing 1 replies (of 1 total)
  • Hey bguthro,

    I see this in your CSS that applies the blue line to these elements:

    .current_page_parent a, .current-menu-item a, .current-menu-parent a {
    border-top: solid 3px #2D84B6;
    padding-top: 4px !important;
    }

    For some reason in your theme Blog and About IAMERS are being set as current_page_parent and current-menu-parent respectively so that’s why they are getting that styling. You might try just removing those selectors from the declaration so it just reads:

    .current-menu-item a {
    border-top: solid 3px #2D84B6;
    padding-top: 4px !important;
    }

    Other than that you are pretty much on your own. I hope that helps!

    – Jonah

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: The Events Calendar] Multiple menu items selected when Calendar item clicked’ is closed to new replies.