how do I change the submenu hover text color to white? it currently set to the background color and it is not visible
screenshot – https://ibb.co/b1zRhNy
live site – https://shawnstoppable.com/home/
thanks
You could add this to your custom css:
.sub-menu li:hover a{color: #ffffff;}
Thanks
This does not work when I am on the current page
Ex – if you go to this page – https://shawnstoppable.com/research-dynamic-advisement/- and hover on the sub menu
But if you go on the homepage and hover over the submenu text it works fine – https://shawnstoppable.com/home/
Any idea why that could be?
Hi navindesigns,
Thanks for giving us admin access.
I have replaced the code with this:
.sub-menu li:hover a .avia-menu-text {
color: #fff !important;
}
Please review your site.
@Evendril Thanks for helping out :)
Best regards,
Nikko
thanks
one other minor thing i am seeing
if I am on the current page
ex – https://shawnstoppable.com/research-dynamic-advisement/
and I hover over the sub menus, the text is NOT black, how can I change that so the submenu text is black when on the active page
Hi,
Please try this CSS as well:
ul.sub-menu li.current-menu-item .avia-menu-text {
color: #000;
}
Best regards,
Rikard
Almost there, I think the colors are in reversed
On the dropdown menu, The current page color should be #baab8f and the others should be #000000
Currently it is the reversed.
https://shawnstoppable.com/stakeholder-engagement/ – hover over SERVICES menu item
Hi,
Please try this CSS instead:
ul.sub-menu li.menu-item .avia-menu-text {
color: #000;
}
ul.sub-menu li.current-menu-item .avia-menu-text {
color: #baab8f;
}
Best regards,
Rikard
Perfect.
Thank you so much!