Repurpose your Images for Mobile Email |
|
10.19.2011 Get connected with Email on Acid for up-to-date news and information on the subject of email design, development, and testing! |
By Michelle KlannSeptember 20, 2011 |
Lotus Notes 8.0 does not support Inline RGB Decimal ValuesIf you include an inline RGB decimal value, Lotus Notes 8.0 will ignore the entire style declaration. For example: <td style="font-size:10px; color:rgb(125, 125, 125); font-family:Arial; padding:20px; background-color:#F90">
This is a TD test </td> Will get converted to this: <td>
This is a TD test </td> What's the fix?Simply use hexadecimal values instead: <td style="font-size:10px; color:#7d7d7d; font-family:Arial; padding:20px; background-color:#F90">
This is a TD test </td> RGB decimal values are supported in embedded styles so another possible fix is to use embedded styles but this won't work in Gmail. For example: <style type="text/css">
.rgb_color { font-size:10px; color:rgb(125, 125, 125); font-family:Arial; } </style> I tested this using the color and background CSS properties within several various HTML tags. This is particularly important if you use WYSIWIG editors when developing HTML emails. |
If you haven't signed up yet, give our FREE online Email Test a try. Just drop in your code and we will instantly simulate your email in the most popular email clients!
Get connected with Email on Acid for up-to-date news and information on the subject of email design, development, and testing!
for exemple :
<td bgcolor="#FFFFFF">...</td>
Fix the problem for all mailer.