How and where do I change Active Menu item, so its diffrent from Inactive Menu item
Can I just make som custom css?
Hey emfutte,
In Enfold > Header > Header layout > Header style, please select Default so that the active menu item looks different. If you would like to make it look a specific way, then, yes, you can add CSS in the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file.
How would you like it to look? Below is a sample code that makes the active menu item’s background color into red.
li.current-menu-item>a {
background: red !important;
color: white !important;
}
I hope that helps!
Sarah