Cordial
Cordial

Reputation: 539

HTML email - underline different colour from text

Example of the different colour underline issue

As in the image above, Links in my company's email footer have a different coloured text underline from the text colour. Does anyone know of a fix for this?

Any advice appreciated!

Upvotes: 0

Views: 6048

Answers (2)

Timothy Groote
Timothy Groote

Reputation: 8653

Remove the text decoration attribute on links, and set a border-bottom with the color of your choice using CSS.

a {
   color:#000000;
   text-decoration: none; 
   border-bottom: 1px solid #999999;
}

Upvotes: 2

Marvin Emil Brach
Marvin Emil Brach

Reputation: 3972

From http://www.hyperlinkcode.com/change-underline-color.php:

<a href="change-underline-color.php" style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>

Upvotes: 1

Related Questions