Latest Lists

How do you make an unordered html list with no bullets?

Public Comments

  1. If you have a list as such: <UL> <LI>This is a list item</LI> </UL> You need to override the style by modifying the "list-style-type" CSS attribute, like this: <ul style="list-style-type:none;"> <li>this is a test</li> </ul>
Powered by Yahoo! Answers