Having experience creating HTML mailers in the past, I am currently struggling to remove text-decoration from links using inline styles for Gmail and Yahoo clients. Despite successfully changing link colors, Gmail continues to add an unsightly blue line under each link. I have attempted:
<a href="link" target="_blank" style="color:red;text-decoration:none">link</a>
And
<a href="link" target="_blank" style="color:red;text-decoration:none"><span style="text-decoration:none">link</span></a>
I have inspected the email using F12 tools and noticed that the inline styles are not being applied by the email client. My template is basic with no overriding properties - could there be something crucial missing for proper display in Gmail?