Trying to solve why IE breaks text formating in e-mail clients. Ex: IE browser everything is fine: IE in gmail, alignment is broken: Now this only happens in IE, and it happens to all templates, mine, this one I got from http://www.campaignmonitor.com/templates/ and others I tried.. Any clue why this is happening? Thanks.
In gmail, all the text is getting center aligned. In your HTML, try removing align="center" The following HTML fragment <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center"> should be <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>
withouth seeing the template code it is hard to tell, but you can add a div container to the whole template and text align to center <div id="wrapper" style="text-align:left"> codes for templates </div> you have to work a bit for the templates to work same in all browsers
I agree with the responses above, you should just add your content into an extra div that is aligned to the left in your email templates... and use what you're currently using for the web templates.