How do you remove link underlines in Outlook?

Sander Schaeffer picture Sander Schaeffer · Nov 26, 2015 · Viewed 12.3k times · Source

I'm trying to create a HTML signature but whatever I try, all my links keep an underline when I send it with Outlook (2007). The strange thing is: When I copy the rendered code (copied from browser to Outlook) it doesn't show any underline. However, once I sent it, it seems all formatting is gone and the underline appears again. If I sent the identical thing from any other client to Outlook this does not happen and it shows correctly.

A few samples of what I've tried:

I'm really out of ideas how to create a clickable link in Outlook that does not has an underline.. Even though 'underline-color:white' is an option. It is not supported by all browsers, which makes it a bit useless.

Any suggestion is welcome!

Via http://devspot.nl/testfile.html you can try all variations yourself.


How it is displayed when copied from Chrome into Outlook:

enter image description here

And how it is displayed when received in Apple Mail (Note: Gmail in Chrome-browser is identical)

enter image description here

Answer

Madness picture Madness · Nov 26, 2015

WORKING UPDATE

As the CSS method never worked, I suggested the OP to take a look at the link below which shows you how to change the hyperlink styling inside Outlook itself:

http://www.msoutlook.info/question/remove-underline-and-changing-hyperlinks-color

-- NOT WORKING FOR OP --

Try this:

<a href="#" style="text-decoration:none !important; text-decoration:none;">Link</a>

The reason this works is because Outlook strips the !important style, leaving the regular style to do the job.