How can I change the colour of text on the menu when it is selected in mobile? I am using the new dawn theme.
Thanks
How can I change the colour of text on the menu when it is selected in mobile? I am using the new dawn theme.
Thanks
Hi,
You can change the active menu item color by adding the below CSS code at the end of your base.css file.
.header__active-menu-item {
color: red !important;
}
Or, if you want to apply the changes only on mobile phones:
@media (max-width:768px) {
.menu-drawer__menu-item--active {
color: red !important;
}
}
Cheers!
Hello @TBNP22
Could you send the URL so that I can review your site?
@GabrielS Thank you! Can you please also let me know how to change the colour on links in the footer when they are active?