Ozzy
Ozzy

Reputation: 8312

Trouble with Tables in Outlook 2010 email template

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:

  1. go to the template: http://skif.pk/email/sm1/
  2. press CTRL+A to select all
  3. go to outlook 2010 to compose a new email, or another rich-text email editor
  4. press CTRL+V in the rich-text editor

I have only used inline styles and set widths on everything so I'm not sure where the problem comes from

Outlook 2010 email view

Resolved

Solution:

<tr>
  <td colspan="1" width="120">&nbsp;</td>
  <td colspan="1" width="120">&nbsp;</td>
  <td colspan="1" width="120">&nbsp;</td>
  <td colspan="1" width="120">&nbsp;</td>
  <td colspan="1" width="120">&nbsp;</td>
  <td colspan="1" width="120">&nbsp;</td>
</tr>

The first row had no column widths defined previously.

Upvotes: 0

Views: 2978

Answers (1)

Morpheus
Morpheus

Reputation: 9055

You setting width wrong. Should be <table width="780" not <table width="780px"

Upvotes: 1

Related Questions