Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am sending an internal newsletter through Outlook. My styles look fine in the MS version, but in the web version and Mac version of Outlook 2010 and web mail (Gmail , Hotmail) all of the links have a blue underline. How can I remove this? I used text-decoration : none ! important; but it doesn't work and also it doesn't appear when I used inspected the element using google chrome tool
it seems like my whole code is reformatted and changed , some tags are added and some styles are stripped

share|improve this question

3 Answers

Outlook uses some weird semi-html markup for it's emails.

CSS does however have the text-decoration-attribute which you can set to none to remove any underlines. This should override the default user stylesheet which seems to provide underlines in some cases, especially when viewing via webmail.

share|improve this answer

Email clients tend to modify/remove/use their own stylesheets. It is very likely that there is not a whole lot that you can do about.

There is one thing however that might work:

<a href="#" style="text-decoration: none !important;">your link</a>
share|improve this answer
I've already set the text-decoration to be none but it doesn't work, I also see that my html code is changed some extra tags are added and some styles are changed – Ayman Jitan Jul 17 '12 at 10:14
Yep, that's what I feared. Then you can probably not do anything about it. Just one more thing: When you set the text-decoration make sure you set it inline. Don't use a class or set the css for a parent element. – Horen Jul 17 '12 at 10:18
Are they maybe being sneaky and adding a <u> element around the links? – Billy Moat Jul 17 '12 at 10:23
the code after being formatted looks like this <td width="189" valign="top" style="width:141.75pt;padding:5.25pt 0in 5.25pt 0in"> <p class="MsoNormal"><font size="2" face="Arial"><span style="font-size:10.5pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;"><a href="#" target="_blank"><font color="#666666"><span style="color:#666666;text-decoration:none">Senior Java Developers</span></font></a><u></u><u></u></span></font></p> </td> – Ayman Jitan Jul 17 '12 at 10:31
Did you put the font and the span tags in there? Try to add the text-decoration to the a tag instead. If you know how to use Firebug or Developer Tools try to find out which css selector is responsible for the underline. – Horen Jul 17 '12 at 11:13

Try adding this to the head of the email

       <style type="text/css">
        a {text-decoration: none !important; color: #000; cursor: text;}
       </style>
share|improve this answer

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.