How to remove or change the bullets from Lists by CSS



 To achieve this we have to use the list-style-type property like so:

<ul>
  <li>red </li>
  <li>blue </li>
  <li>green</li>
</ul>

CSS to remove the bullets
<style>
 li{ list-style-type:none; }
</style>

CSS to change the different bullets
<style>
 li{ list-style-type:circle; }
</style>

There are different types of bullets you can use  here is the list use according to your needs.
decimal,disc,aremian,Georgian,hiragana and more.

Comments

Check out

CSS Sprites | What are They?

Login form | Using CSS3

Remove Scrollbars from syntaxhighlighter

Adding a button in HTML | styling a button

HTML5 Semantic Tags | What do they mean

How to remove plus and minus characters from input type number

HTML5 | LocalStorage

How CSS3 Works

jQuery Resources | Support and tutorial help