Hi there,
I am wanting to change the colour of the Mobile Menu text for the parent and child items for the site listed in private content.
So for example:
The Parent page Gallery would be one colour, and then the sub menu under it with Coastal, Suburban, Apartments etc would be another.
Thanks!
Hey tankerhq,
Please try this code in the General Styling > Quick CSS field:
#top #wrap_all .av-main-nav ul > li > a {
background-color: #ccc !important;
}
Please adjust to suit.
Best regards,
Mike
Hi Mike,
thanks for your fast reply!
I should have been more specific sorry. I am wanting to change the colour of the text of the two separate menu levels.
Here’s an example: https://imgur.com/a/s5v5B9m
I would like all the menu Parent items (in orange) in one colour, and then the lower level pages in the menu (green) in another.
Thanks!
Hi,
Thanks for the feedback, please try this css instead and adjust the colors to suit:
li.menu-item-top-level > a {
color: red !important;
}
ul.sub-menu li.menu-item-object-page > a {
color: green !important;
}
Best regards,
Mike
That worked perfectly. Thanks Mike!