Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Yahoo keeps inserting blue dotted links within our HTML emails on plain text within a <p> tag. It seems to be doing this to locations mostly.

I've tried to override this using inline styles like:

   style="font-family: arial, helvetica, sans-serif; color: #808080; font-size: 8pt; text-decoration:none; outline: none; -moz-outline-style: none;"

I've done a bit of research on this and it seems like it may not be possible to remove them, but I'm just looking to confirm that.

share|improve this question
@valentinas, what relevance is your suggestion?... he can't force all the recipients of his email messages to use gmail. – Sparky Oct 8 '12 at 15:25

1 Answer

Have you tried adding the following to the CSS before </head>:

.yshortcuts {border-bottom: none !important; color: #000000 !important}

There is a little bit more info on this over at Exact Target's blog.

share|improve this answer
Yup I had tried that as an inline style on a <p> tag and as a class on the container <td> with no luck. – jsuissa Oct 8 '12 at 17:24
Are you committed to using <p>s? I think that has worked for me in the past, but then I don't use <p>s in HTML email. – samanthasquared Oct 8 '12 at 20:01
No, I just tried to wrap affected text in a <span> and with this class .yshortcuts {border-bottom: none !important; color: #000000 !important} but it didn't remove the link. – jsuissa Oct 9 '12 at 6:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.