Removing text decoration on CTAs

Hello Community -

This is a very basic question but for the life of me I can’t figure out how to remove the text-decoration for all of my CTAs. I’ve tried to target .HitchhikerCTA-iconLabel and set text-decoration: none but it’s not removing.

Would appreciate the help and think this could be good to add to the Admin Code Snippets :slight_smile:

Thanks,
John

Hi @John_McGraw are you trying to remove the CTA underlining on hover?

Sam

Hi @Sam_Torres yes I should have clarified it was on hover. I tried targeting what I said above in answers.scss with &:hover and it wasn’t working so not sure what I’m doing wrong.

Hi John, thanks for clarifying. This should do the trick:

  .HitchhikerCTA:hover {
    text-decoration: none;
  }

Let me know if that works!