How to Change link hovers in broadcast theme

I need help with changing some link hovers!

I want my nested menu dropdown to just have a hover and no underline but keep it as is in the main menu items

Make all products, collections and products have a link hover

Make the footer menu have no underline or hover

Hi @OfKinAndGold

Please share your store link & password (if applicable) to let me check and give you the solution

https://ofkinandgold.com/

password: golden

Let try to add this custom css code:

.header__menu .grandparent .navlink--grandchild:hover span:first-of-type:after,
footer .footer__quicklinks li:hover a:after {
  width: 0;
}
.collection-item:hover .collection-item__info,
.product-item:hover .product-item__title {
  color: #C5AA76;
}

That didn’t see to do anything

did you add that code?

yes

You’re adding wrong place.

That code should be inside tag


got it! I need it to have a hover color in the nested menu though how can I add that?

You can add this Cusom CSS code:

.header__menu .grandparent .navlink--grandchild:hover {
  color: #C5AA76;
}