How to Remove Product Grid Underline on Hover (Taste Theme)

Hi,

I am currently designing my site using the Taste Theme.

I have run into a problem where when I hover over my products in the product grid the text underneath gets underlined. I would like to adjust this so that there is no underline and it just stays solid text.

My Site Page: https://muddytrenchwear.com/collections/all

Site Password: MTT2023

Any help would be very much appreciated. Thank you,

Tyler

Hi @Tylerverdee you can use this CSS code to remove underline of text when hovering

@media screen and (min-width: 990px){
.underline-links-hover:hover a {
text-decoration: none !important;
}
}

Thank you again Dan