Link to home
Start Free TrialLog in
Avatar of Schuyler Kuhl
Schuyler Kuhl

asked on

html e-mail template with tables not keeping a fixed width

Greetings,

I have a simple html file that I am trying to use as an e-mail template.

However when I use it as an e-mail it doesn't retain the fixed width that I have set.

It seems to put a large buffer between a picture and some text in the table cell next to it. And the width of the whole table isn't fixed properly.

When I browse to the html file it looks proper.  I have tried sending it as an html e-mail from ms word / outlook and also through the mail chimp system.

First I thought it must be a factor of using word/outlook.  But when I imported the page into mail chimp it looks ok in the preview but then when I recieve the message in outlook I have lost the fixed width of the page.

Basically I'd like to know the trick to creating a fixed width html document that stays fixed width when it is mailed.

Thanks very much.

Sky

Avatar of Schuyler Kuhl
Schuyler Kuhl

ASKER

I found that if I nested tables the interior tables would keep the width fixed.

I was never able to make the primary table work to set the fixed width of the message.
Avatar of Dave Baldwin
We would need to see your code to help you.
HI,

use this type to table

<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
</tr>
</table>

thank you any modification call me - 9953958553
Yeah thanks.  I know how to define the width of a table.  It is just that it wasn't staying to those dimensions.

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Schuyler Kuhl
Schuyler Kuhl

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This is what I did to resolve the issue.  The other suggestions were not relevant.