View Full Version : Lists WITHOUT bullets or numbers?


DSDragon
05-01-2006, 08:19 PM
Can anyone tell me how to make a list (with the sub-listings and all), but have the bullets or numbers NOT SHOW UP? Is there some sort of CSS code for that or something?

pb&j
05-02-2006, 01:55 AM
<style type="text/css">
<!--
ol {list-style-type: none;}
-->
</style>

that will make your OL lists not have any bullets.

DSDragon
05-02-2006, 03:40 AM
Thanks! That helps a lot! Now I can code the company's site map for work! (But not until I get there tomorrow.)

pb&j
05-02-2006, 04:27 AM
ok. good luck!