How do you make an unordered html list with no bullets?
Public Comments
- 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