Hi,
In the Enfold Theme Header Style options, it gives an option to remove the ‘indicators/border/transparency’ from the header…
I would like to just remove the menu item INDICATORS ONLY.
Can you please provide a quick CSS to remove them?
Cheers, Justin
Hey Justin!
Try adding this code to the Quick CSS:
.avia-menu-fx{
display: none;
}
Cheers!
Josue
Hi Josue,
Thanks! That kind of worked… That code only took away the indicators on the menu items that DO NOT have a drop down menu. The drop downs still have it.
Is there a little something extra you have to remove those indicators too?
Justin
Hi!
Please add following code to Quick CSS as well
.html_header_top .header_color .main_menu ul:first-child >li > ul, .html_header_top #top .header_color .avia_mega_div > .sub-menu {
border-top-color: transparent;
}
Cheers!
Yigit
Thank you guys!