My HTML email newsletter design doesn't render properly in Outlook 2007. There is a white horizontal gap towards the bottom which breaks borders and backgrounds. I've had this happen before and have no idea how to work around it. Any suggestions? I've posted the source here. It renders just fine except in Outlook 2007 (Word 2007).

By the way, you can preview the problem without Outlook, by opening the source with Word 2007.

link|improve this question

feedback

6 Answers

I can't see the original source, but the workaround is to insert a 100% width table somewhere in the design just above where it's breaking. This can be a 1px high transparent line. This allows Outlook to insert a page break.

Outlook is using Word 2007's rendering engine, so if it reaches the end of a sheet of A4 in printing size, it has to insert a page break somewhere. If there's an image in the place where it would otherwise insert that page break, it will just force that image down to the next page - that's the space you are seeing.

Using the 100% table allows Outlook to insert the page break there instead.

link|improve this answer
very interesting! I'm not sure this workaround will work for me though, because my design is (in simplified form) an outer table enclosing two side-by-side tables used as left and right columns. So, something like this: – jalperin Apr 15 '11 at 10:44
You can make it look the same but it will take some time. I spent ages looking for workarounds on this bug, and designing in such a way that you can have regular 100% tables was the only fix I found. – Blowski Apr 15 '11 at 11:06
@jalperin Did you find a way around the problem? If there's anything else I can help with, feel free to ask. – Blowski Apr 28 '11 at 22:42
@Blowski I'm curious about the rationale of the 100% table widths. We currently have a nested table with a fixed width of 300 within a td of width 300. The content is splitting in the middle of the table, so if I read your solution correctly making the table 100% will cause the entire table to bump down rather than splitting. Is this right? – Steve Perks Aug 16 '11 at 14:10
1  
@Steve It sounds bizarre, but even when displaying on the screen (and not in print preview) Outlook 2007/2010 is trying to render it to fit on A4. When it reaches a new 'sheet', it will insert a page break. It won't split an image in half, but will instead break the table containing the image. The 100% table thing is a rather brute-force method - you can get around it by moving the image up or down in the design, or even by splitting the image at just the right place, but that can be a lot more work. – Blowski Aug 16 '11 at 14:57
show 2 more comments
feedback

I currently have exactly the same problem, as far as i'm aware this is something to do with Outlook 2007 using Word 2007 as a rendering engine. Because of this, Outlook 2007 puts (what are effectively) page breaks throughout your email (at certain intervals).

I may be completely wrong, but this is how I see it...

Any answers would be rather good!

link|improve this answer
Yes, I've experienced this as well, Outlook seems to be adding page breaks to avoid chopping an image in half. Which of course is a silly thing to do for an e-mail unless you're trying to print. – EfficionDave Aug 25 '10 at 16:53
It's because of the Word rendering engine - it thinks it's still in Word... Silly Microsoft...again... – Neurofluxation Aug 27 '10 at 8:02
feedback
up vote 0 down vote accepted

The answer seems to be that these bugs are related to the size/length of the email and can't be eliminated, though sometimes the effect can be mitigated by editing the content to add additional horizontal spacing or by increasing the line-height attribute of some of the text that precedes the breaks.

link|improve this answer
They are related to the length of the email, in that the problem occurs wherever the email finishes a sheet of A4 if you were printing it. – Blowski Apr 15 '11 at 20:41
feedback

My experience is that this white line break normally occurs when there is an image close to the line breaks that outlook 2007 inserts. The quick workaround is to insert some text beneath the image so that instead of letting outlook 2007 insert the page break, the extra text will format the pages without any "help" from outlook 2007 hence the disappearance of the mysterious white line.

link|improve this answer
feedback

Here is a good explaination of what can cause that bug and how you may be able to fix it: http://www.emailonacid.com/blog/details/C13/horizontal_spacing_issues_in_outlook_2007_and_2010

link|improve this answer
feedback

Microsoft, in their infinite wisdom uses Word to render HTML? So I let Microsoft write the HTML for me.

  • Publish email as a web page
  • Copy web page into an Outlook email
  • Send the email to yourself
  • Get the source code of the email you receive from yourself

That HTML will now work fine.

Don't even bother to decipher the HTML Microsoft creates. I'll give you a headache.

Next, I had to copy the HTML back into Dreamweaver to fix a few things:

  • img src= was all screwed up
  • background color you can fix in the Outlook email you send, or in the HTML

By the way, I found if I tried at put the image map hyperlinks back in, the problem resurfaced. So I just linked the whole image.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.