Reputation: 8312
I'm trying to fix the width to <800px wide, however Outlook messes up the template and the table width becomes > 1000px and the columns are all uneven widths.
Steps to reproduce:
I have only used inline styles and set widths on everything so I'm not sure where the problem comes from
Solution:
<tr>
<td colspan="1" width="120"> </td>
<td colspan="1" width="120"> </td>
<td colspan="1" width="120"> </td>
<td colspan="1" width="120"> </td>
<td colspan="1" width="120"> </td>
<td colspan="1" width="120"> </td>
</tr>
The first row had no column widths defined previously.
Upvotes: 0
Views: 2978
Reputation: 9055
You setting width wrong. Should be <table width="780"
not <table width="780px"
Upvotes: 1