How-to Guide
If you are looking to remove the underline from a specific hyperlink in your message, this can be done in two ways:
- Formatting the link using the toolbar; OR
- Formatting the link by editing the HTML code
Looking to remove the underline from all links? Please see Remove the Underline From All Links.
Using the Toolbar
- Open the message in question for editing.
- Double click inside the component that has the underlined link in it, to open it for editing.
- Highlight your hyperlink within the text.
- On the floating toolbar, click the
(underline) icon, as shown. Your link will no longer feature an underline.
Editing HTML Code
- Open the message in question for editing.
- Double click inside the component that has the underlined link in it, to open it for editing.
- On the floating toolbar, click the icon.
- Locate the code for your link. It will use syntax similar to:
<a href="http://example.com/link.html">this text is linked</a> - Alter the code so that it includes an extra section of code, which removes the underline. Here's what it would look like once added (the section in bold is what you'll need to add to your link code):
<a style="text-decoration:none" href="http://example.com/link.html">this text is linked</a> - Close the code editor to return to your message.