Hello,
When we use a text box and hyperlink text within the text box, an annoying line appears under the hyperlinked text. It is there regardless of whether you hover or not. I have searched the forum for custom CSS to remove the line, but can’t seem to find anything.
Do you have any suggestions?
Hi Brandon!
Try adding this to your custom CSS.
a { text-decoration: none !important; }
Or if that has strange side effects then use some inline CSS like so.
<a href = "#" style = "text-decoration: none;">Click me</a>
Cheers!
Elliott