Why aren't my bullet points showing up in Outlook 2003?


If you have a CSS “width” property set in a containing UL, your bullets will not render in Windows Mail, Outlook Express, Outlook 2003 and Live Mail.  Once you remove the width property, you will resolve the issue.

For example, change:
<ul style=“width:250px; padding-top: 20px; margin-top: 2px;”>

to this:
<ul style=“padding-top: 20px; margin-top: 2px;”>

Also, Thunderbird 2 renders bullets like diamonds rather than circles.

One suggestion to resolve this in every email client is to create a table for every bulleted list and use images or an HTML entity as the bullet itself.

For example:

<table>
<
tr>
<
td><img src=“http://www.example.com/dot.gif”>td>
<
td>Insert text heretd>
tr>
table>

OR
<table>
<
tr>
<
td>&bull;td>
<
td>Insert text here td>
tr>

  • 82 Користувачі, які знайшли це корисним
Ця відповідь Вам допомогла?

Схожі статті

Gmail is converting my email addresses to links.

Yes, if you have an email address listed without a link, Gmail will add it for you.  For...

How do I create dynamic urls using field names?

To view all variable names you can use for fields within the system go to Forms - Fields Manager....

How do I get around the fact that Gmail does not support embedded CSS?

One way to get around this issue is to convert your embedded CSS into inline using our CSS...

I am trying to save but the save button isnt working

The most common reason for the save not saving is because on the top part of your page "Message...

I am using a small font and my line spacing is all screwed up.

This is because of the Gmail DOCTYPE, try putting your font inside a paragraph tag instead of...