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
Post a Comment