How do I remove the bullet in list items with CSS?
Just when I thought I had removed the bullet… I found it still there in IE7. Best way to remove the stupid thing once and for all is to add list style type to both the UL and LI items.
I needed the list items to remain as block elements so here’s what I did for CSS.
.press_wrap ul, .press_wrap li {
list-style-type: none;
margin-left: 0px;
padding-left: 0px;
}