Jesper Frier Certified Professional


Joined: 09 Sep 2006 Posts: 1925 Location: Stoevring, Denmark
|
| Posted: Sat Jul 24, 2010 5:38 am Post subject: Outlook Web Access doesn't support style tags |
|
|
Outlook Web Access doesn't support style tags;
| Code: | <table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<font style="font-size:12px; font-family:Arial, Helvetica, Geneva, Sans-Serif; color:#000000;">Text with styles</font>
</td>
</tr>
</table> |
Resolution
Place <font> tags outside <div>'s for Outlook Web Access support.
Any browsers that don't recognize styles will also default to the <font> tag settings.
| Code: | <table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<font size="2" face="Arial, Helvetica, Geneva, Sans-Serif" color="#000000">
<div align="left" style="font-size:12px; font-family:Arial,sans-serif; color:#000000;">Text between font tags</div>
</font>
</td>
</tr>
</table> |
_________________ </Jesper> | Manage Email Signatures from your Desktop | Test Email Signature in All In-boxes | Email Signature Showcase |
|