August 1, 201115 yr Hey all, Really need some help, I have created a HTML newsletter and have some <ul> in there.. I need to be able remove the bullet points, however now matter what I add into the code there not going. They dissapear in every email client apart from outlook 2010!!! It's driving me insane! I have tried: list-style:none list-style-type:none I have added these into every inline style and in the style tag at the top of the document. Has anyone else had this problem or can anyone suggest anything? Thanks, Josh
August 1, 201115 yr Author Ok well i tried it in dreamweaver but it would not let me allow the Important in on an inline style. This is driving me insane now
August 1, 201115 yr Ok well i tried it in dreamweaver but it would not let me allow the Important in on an inline style. This is driving me insane now Maybe you could try making it display as a block using (shouldn't make a difference but worth a try).. display: block; Then applying.. list-style: none !important; ..to the ul style. So something like.. <ul style="list-style:none !important; display:block;"> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul> If this doesn't work then it may be something to with the Outlook settings.
Create an account or sign in to comment