SB
1
Creating a email that renders in Outlook - using HTML only no CSS
Can anyone help me with what to add to my html email to have it render correctly in Outlook & mobile we are trying: Any thoughts? Also In Chrome there is a spot that is showing a blue back bkground around the bullet text.
<!--[if (gte mso 9)|(IE)]>
<table align="center" border="0px" cellspacing="0px" cellpadding="0px" width="600px">
<tr>
<td align="center" valign="top">
<![endif]-->
Here is my specific? The above code was how we solved in the past: See if you can find out why Outlook (Windows version) doesn't recognize the 600px container - and if we need to do some kind of if then statement for it.
Thank you
Hi Sheri,
You shouldn't specify the px unit for HTML attribute. Try like this:
<!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600">
<tr>
<td align="center" valign="top">
<![endif]-->
Kr
Julien