Hi @shoreandmore,
> I’m new here. I’m trying to change the hover colour on the main navigation menu as well as on the cart icon. I couldn’t find an obvious setting for that. Any CSS suggestions (and how I apply them? 🙂 )
You can target the text of the primary navigation hover like this:
.main-navigation .primary-navigation li:hover a {
color: #0e74b2;
}
The cart hover like this:
a.cart-contents:hover {
color: #e2401c;
}
Cheers,
Thank you very much, Mikey!
It changes hover colour on the main navigation, but not on the cart. :/
Any ideas?
AHh yeah, my CSS wasn’t quite right.
Try this:
.site-header-cart:hover > li > a {
color: #0231dc;
}
Cheers,
Thank you soooo much! 🙂 🙂 🙂