Remove the icons in general
<style> ul { list-style-type: none; } </style>
<ul> <li>one</li> <li>two</li> <li>three</li> </ul>
<ul> <li>one</li> <li>two</li> <li>three</li> </ul>
Remove the icons for a specific unordered list
<style> #removedBulletsList ul { list-style-type: none; } </style>
<ul id="removedBulletsList"> <li>one</li> <li>two</li> <li>three</li> </ul>
By PHPin24 @ 2009-07-10 09:55:09
|