Okay, I’ve searched this site up and down. how do you get the bullets to work in the default theme under IE?
I found a suggestion to create an image of the bullet, which I did, but only Firefox ever actually used it. Under no circumstance have I ever been able to get any kind of bullet, even text or anything, under IE.
I just spotted a comment in the CSS that implied that IE maybe ought to have some sort of bullet if not the fancy >> kind? I’ve never seen any kind of bullet at all. Is this a clue?
IE will display bullets but since it doesn’t currently support pseudo-elements, you will have to edit your css to something like:
.entry ul li, #sidebar ul ul li {
list-style-type:disc;
}