Looking at your site this seems to be resolved.
FYI all the theme colors are managed via the Customizer.
If you want to over-rule the link hover colors add the following css to your child theme or css plugin;
a:hover {
color: black;
}
Thanks
Hi James,
It was not what I meant but I figured it out anyway 🙂
Thanks
Regards Peter
Where did you find the issue and how dod you correct it Peter? I have the same annoying issue
Hi Killian,
I used this code in my childtheme:
.star-rating span:before,
.widget-area .widget a:hover,
.product_list_widget a:hover,
.quantity .plus, .quantity .minus,
p.stars a:hover:after,
p.stars a:after,
.star-rating span:before {
color: #000000!important;
}
It changes to black when hovering.
Regards Peter
You might want to use this also:
.widget_nav_menu ul.menu li.current-menu-item > a {
color: #000000!important;
font-weight: Bold;
It makes the menu that is clicked stay black
/Peter