skip to Main Content

I’ve tried everything I could to remove the underline that appears when hovering over a product title on my Shopify. Any css suggestions as to how I can remove this underline anywhere that a product title appears?

Thank you!!!

2

Answers


  1. Yeah. I had encountered this issue before. Just use below code snippet:

    .site-nav__link:hover span.site-nav__label { border-bottom: none; }

    From my code snippet. Just replace it with your div

    Login or Signup to reply.
  2. **Try these two**
    
    a:link {
      text-decoration: none;
    }
    
    a:hover {
      text-decoration: underline;
    }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search