tags:

views:

94

answers:

1

I know this horse has just about been beat to death.. but I've got a Gmail table spacing issue that is just stumping me this morning.

<td valign="top">
        <img src="###/enewsletter_layout_v3_18.jpg" alt="" />
        <table cellpadding="0" cellspacing="0" style="background: #000; width: 700px; margin: 0 0 0 8px; text-align: center; color: #fff;">
            <tr>
                <td valign="top" style="background: #890000; height: 50px; padding: 10px 15px; font-size: 24px; font-weight: bold;">
                New Patient Special Offer <br/>
                Save $$$
                </td>                   
            </tr>
            <tr>
                <td valign="top" style="background: #000; height: 50px; padding: 5px 15px 15px 15px;">
                    <h1 style="font-size: 24px; font-weight: bold;">Do you have a question?</h1>
                    If you have read anything in this newsletter and have any questions or would like to 
                    discuss further, please contact <br/>
                    The Spinal Decompression Centre at (519) 850-7321 
                </td>                   
            </tr>           
        </table>

    </td>

No matter what I do, the first image in the table there (layout_v3_18) always has spacing under it. About 2-3 pixels of white space in Gmail. Happens on a couple other images in the email, but the rest work fine. No matter how many times I compare the tables, it won't work.

Thoughts?

+1  A: 

In answer to my own question (in case someone else has a similar issue), I finally found the issue (or a solution anyways).

I added a style="float: left" to the image itself, which magically fixed it.

gamerzfuse
Excellent! Just what i was looking for
Moak