+ 8
The default bullets can be replaced with other native options or completely removed using CSS to manipulate the list-style-type property. You can even change the UL bullet to a custom image or icon.
Consider my example below:
HTML:
<ol class="mdj">List
<li>Hello</li>
<li>World</li>
<li>What's up?</li>
</ol>
CSS:
ol.mdj {
list-style-type: arabic-indic;
}



