I've been using my own version of this for awhile now and noticed that not many Email Providers accept any CSS. Your best bet is to use the
style="" attribute. The template I've been using to send emails that are formated nicely is the following.
HTML Code:
<br />
<table border="0" width="80%" cellpadding="0" cellspacing="0" align="center" style="border: 1px solid #334676;">
<tr>
<td>
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td><img src="http://www.vbhackers.com/forum/images/misc/vbulletin_hackers_logo.gif"></td>
</tr>
<tr>
<td valign="top" style="background: #405384;"> </td>
</tr>
</table>
<table border="0" width="100%" cellpadding="1" cellspacing="6" align="center">
<tr>
<td class="alt2">
<div style="font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"><strong>New Title</strong></div>
<br />
<div style="font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;">
Some Text Here
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br />
Notice the
style="" attribute being used alot there. You cab basily use any CSS commands in the style attribute for that giving <table>, or <td>. You can see the howto here:
http://www.vbhackers.com/forum/showthread.php?t=3840.