"list-style-type: none" does not work in Outlook 2007
I programmed an e-mail newsletter with html. I am able to change the display of list items with list-style-type. E.g. if I write
ul{ list-style-type: square;}
the list items are displayed with a square (in Outlook 2007 and Thunderbird 32).
However if I write
ul{ list-style-type: none;}
Outlook 2007 shows the standards circles while Thunderbird shows nothing as it should.
Helpful, but not resolving links:
As you can read here: http://msdn.microsoft.com/en-us/library/aa338201.aspx "none" isn't working. But you could fake a list with a table. Or, as you don't want any list-type, just do line-breaks.