As per the title, how do I change/remove styling (which is a white top border) on the main menu for both the active page and on hovering a menu item? I am using the Avada child theme and started out with the Architecture demo content. I'm new to web dev and using Custom CSS but can figure most things out with a little guidance. Have checked the forum for existing threads but nothing I have tried has works so far. Thanks in advance.
As per the title, how do I change/remove styling (which is a white top border) on the main menu for both the active page and on hovering a menu item? I am using the Avada child theme and started out with the Architecture demo content. I'm new to web dev and using Custom CSS but can figure most things out with a little guidance. Have checked the forum for existing threads but nothing I have tried has works so far. Thanks in advance.
Go to you theme admin panel then Appearance > Editor. Then paste this code bellow into Stylesheet (style.css):
.fusion-main-menu .current_page_item > a {
border-color: #000 !important;
}
.fusion-main-menu > ul > li > a:hover {
color: #000 !important;
}
Hope it solve your problem