I don't know why IE shows it as you want it to be, but Firefox is showing it as you have told it to.
You have moved the list marker from #chcategories ul ul a {} to #chcategories ul ul {}, so the subcat list is getting the marker, and the specific selected link is also getting a marker, which you have changed from the original line (bullet3) to the standard arrow (bullet1).
This is the original CSS:```
#chcategories ul ul {/subcategory lists/
list-style: none;
background: #ffeecc;
border: none;
margin: 0 0 0.4em 0;
padding: 0 0 0 1.3em;
}
#chcategories ul ul a {/subcategories/
display: list-item;
list-style: circle inside url(../images/bullet1.gif);/change to list-style: none; to remove bullet/
background: #ffddbb;
border: none;
margin: 0;
padding: 0;
}
/change bullet when a category w/o bg image is open to products:/
#chcategories li a.cat-selected-text {
list-style: square inside url(../images/bullet3.gif);/change to list-style: none; to remove bullet/
}
THis is what you have:
#chcategories ul ul {/subcategory lists/
list-style: disc url(../images/bullet1.gif);
background: #ffffff;
border: none;
margin: 0 0 0.4em 0;
padding: 0 0 0 2.0em;
}
#chcategories ul ul a {/subcategories/
border: none;
margin: 0;
padding: 0;
color: #0075e2;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
/change bullet when a category w/o bg image is open to products:/
#chcategories li a.cat-selected-text {
list-style: square inside url(../images/bullet1.gif);/change to list-style: none; to remove bullet/
}
Move the list-style from #chcategories ul ul {} back to #chcategories ul ul a {}.