I want to change the menu menu links color on some pages – how do I do this?
Hi sasha!
Drag a codeblock element to your page and add this inside.
<style type = "text/css">
.av-main-nav > li > a > .avia-menu-text {
color: red !important;
}
</style>
Or if your trying to target specific pages then use this.
#menu-item-2577 > a > .avia-menu-text { color: red !important; }
Where 2577 is the ID of the page.
Regards,
Elliott