Search code examples
htmlcsshtml-email

How can I change link color in html email?


I tried a few ways to change the link's color, but it didn't work. These what I tried:

None of them works and the link's color is still blue. How can I overwrite the blue color to my own color?

<span style="text-decoration: none; color: #959595">www.xyz.com</span>
<span style="text-decoration: none !important; color: #959595 !important">www.xyz.com</span>
<font style="text-decoration: none; color: #959595">www.xyz.com</font>


Solution

  • Thanks to mplungjan I realised that my solutions were wrong and it's an easy fix. Thank you for everyone who posted solutions!

    <a href="www.xyz.com" style="text-decoration: none; color: #959595; cursor: pointer">www.xyz.com</a>