css - Gmail screws up html emails that I send out -


this code html email renders nicely in clients except gmail. reason, link not underlined, reader doesn't realize link. ideas on how overcome this?

thanks!

<td align="center" bgcolor="#337711" style="color: #ffffff;"><a style="color: #ffffff; text-decoration:underline;" href = "http://www.example.com/">click</a></td> 

try changing

<td align="center" bgcolor="#337711" style="color: #ffffff;"><a style="color: #ffffff; text-decoration:underline;" href = "http://www.example.com/">click</a></td> 

to

<td align="center" bgcolor="#337711" style="color: #ffffff;"><a style="color:#ffffff;text-decoration:underline;" href="http://www.example.com/">click</a></td> 

so remove spaces between href , link.


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -