Have you placed list-style-typein ulor li?
It should be: (afaik)
ul{
list-style-type: none;
}
Other than this, I have used this before:
li{
background-image: url();
background-repeat: no-repeat;
background-position: left;
padding-left: 12px;
}
This is probably not the best way, but it does its job :)
Additionally, try also:
li.class, li.collapsed, li.expanded {
list-style-image: none;
list-style: none;
list-style-type: none;
}
ul {
list-style-image: none;
list-style: none;
list-style-type: none;
}
source
share