Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7668495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:22:42+00:00 2026-05-31T15:22:42+00:00

I have searched and searched and couldn’t find the answer. I have strange problem,

  • 0

I have searched and searched and couldn’t find the answer.

I have strange problem, shown only in Outlook 2010.

My problem

As you can see in the image, I have one big table cell (behind the image), and on the other side, on the right (not in the image) table with 9 cells, same structure used in my question which can be found Here

Now, I don’t understand why Outlook 2010 is not rendering my code properly, and why do I have those black lines (spacing maybe?) on both sides of the image.

Here is my current code, I may have overlooked something… 🙁

<td rowspan="9"><img alt="Image" src="http://imagelink.com" width="177" height="177" style="margin:15px 0 10px 20px;border-style:solid;border-color:#fff;border-width:7px;-webkit-box-shadow:0 3px 7px 1px #cecece;-moz-box-shadow:0 3px 7px 1px #cecece;box-shadow:0 3px 7px 1px #cecece"></td>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:22:44+00:00Added an answer on May 31, 2026 at 3:22 pm

    First, there is not enough info here to duplicate the problem. I copied your exact scenario from the link provided with the snippet above.

    <table>
    <tr>
        <td rowspan="9"><img alt="Image" src="http://imagelink.com" width="177" height="177" style="margin:15px 0 10px 20px;border-style:solid;border-color:#fff;border-width:7px;-webkit-box-shadow:0 3px 7px 1px #cecece;-moz-box-shadow:0 3px 7px 1px #cecece;box-shadow:0 3px 7px 1px #cecece">
        </td>
        <td>
            Cell 1
        </td>
    </tr>
    <tr>
        <td>
            Cell 2
        </td>
    </tr>
    <tr>
        <td>
            Cell 3
        </td>
    </tr>
    <tr>
        <td>
            Cell 4
        </td>
    </tr>
    <tr>
        <td>
            Cell 5
        </td>
    </tr>
    <tr>
        <td>
            Cell 6
        </td>
    </tr>
    <tr>
        <td>
            Cell 7
        </td>
    </tr>
    <tr>
        <td>
            Cell 8
        </td>
    </tr>
    <tr>
        <td>
            Cell 9
        </td>
    </tr>
    </table>​
    

    Tested it in Outlook 2010 on Windows 7. No problems. Please include the exact markup. Headers and body content can affect the email.

    Second, what machine you are using, Outlook appears differently in XP than 7.

    Third, you should not use shorthand CSS for emails. See: http://sixrevisions.com/web_design/creating-html-emails/

    Fourth, paddings and margins only work on tables and td tags if they are to be cross email-client compatible: http://www.campaignmonitor.com/css/. Margins however are not supported in Hotmail. Without nesting the image into another table as per the link, you will have padding/margin issues with inner content on the first row.

    Fifth, you need to close all your tags. The image did not have it’s closing /.

    I hunch that you may have to use nested tables here, as it may be an email client display issue. There is a section on that here: Campaignmonitor has an excelent section for design-guidelines

    Try this:

    <table>
    <tr>
        <td>
            <table>
                <tr>                   
                    <td style="padding-top: 15px; padding-right:0px; padding-bottom: 10px; padding-left:20px;" width="177px" height="177px">
                        <img alt="Image" src="http://imagelink.com" width="177px" height="177px" style="border-style:solid; border-color:#ffffff; border-width:7px; -webkit-box-shadow:0 3px 7px 1px #cecece; -moz-box-shadow:0 3px 7px 1px #cecece; box-shadow:0 3px 7px 1px #cecece" />
                    </td>
                </tr>
            </table>
        </td>            
        <td>
            <table>
                <tr>
                    <td>
                        Cell 1
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 2
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 3
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 4
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 5
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 6
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 7
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 8
                    </td>
                </tr>
                <tr>
                    <td>
                        Cell 9
                    </td>
                </tr>
            </table>
        </td>
    </tr>
    </table>​
    

    Hope it helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have searched for an answer but couldn't find it anywhere. My question is
I have searched this but really I couldn't find the exact answer for .asmx
I have searched for an answer but couldn't find one! I have a simple
I have searched everywhere but I couldn't find my answer, is there a way
Where i can find Groovy Console source code? I have searched Google a lot
I wish I would find an answer for this. I have searched and searched
I have searched around for a similar question and couldn't find anything. .Caret doesn't
I have searched about difference between DNID and Extension. But I couldn't find any
Well, I have searched all over and couldn't find anything, so please excuse if
I have searched it all around but couldn't find it all i want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.