Unclickable links anchored to menu-top-menu do not want to highlight

I want to have unclickable links that are anchored to the top menu. The anchor works fine, but I do not want the menu item to be highlighted because every unclickable like will be highlighted. Below is a screenshot illustrating my problem. I am hoping to get help with the css required to remove the red highlight from “Resources”.

Thank you

I can’t give you the CSS for this without looking at the code, but you’ll need to target each unclickable link with CSS that removes the top highlight. It’ll probably end up looking something like this:

#resourcelink a:hover {
border-top: 0px;
}

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.