Bullets not lining up in Outlook 2007, 2010, 2013

458 Views Asked by At

I am using the following code to create bullet points:

<tr align="left">
    <td valign="top" width="40" style="text-align:left; line-height:26px; padding: 0px;">
    &bull;
    </td>
    <td height="20" style="text-align:left;line-height:26px;padding:0px;">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
    </td>
</tr>

I want it to look like this:

List with correct alignment

But it looks like this:

List with wrong alignment

2

There are 2 best solutions below

1
EA_ On

Check paddings and margins for 'p' and 'li'.

2
gwally On

Add this to your <head>:

<!--[if (gte mso 9)|(IE)]>
  <style type="text/css">
    li {text-indent: -1em;}
  </style>
<![endif]-->

Try this instead for your list:

<ul>
  <li>
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  </li>
</ul>

You can add any extra formatting effects you like.

Good luck.