Amaury Well-known member Jun 22, 2015 #1 We just have the classic underline when hovering over our links; however, the underline partially obscures the at symbol on user tags. How can I remove the underline on hover only for user tags? Thanks!
We just have the classic underline when hovering over our links; however, the underline partially obscures the at symbol on user tags. How can I remove the underline on hover only for user tags? Thanks!
Steve F Well-known member Jun 22, 2015 #2 Try this, might affect other areas but it is targeting the username only. Code: .messageText a.username:hover { text-decoration:none; } Upvote 0 Downvote
Try this, might affect other areas but it is targeting the username only. Code: .messageText a.username:hover { text-decoration:none; }
Amaury Well-known member Jun 22, 2015 #3 Steve F said: Try this, might affect other areas but it is targeting the username only. Code: .messageText a.username:hover { text-decoration:none; } Click to expand... That did it! For reference, where could it possibly cause problems? Upvote 0 Downvote
Steve F said: Try this, might affect other areas but it is targeting the username only. Code: .messageText a.username:hover { text-decoration:none; } Click to expand... That did it! For reference, where could it possibly cause problems?