Throughout my site I am seeing an extra, empty bullet at the beginning of every unordered list in IE8, but not Firefox.

I validated the page using the W3C validator service and have no HTML errors. If I switch to "Compatibility" mode in IE8, then the extra bullet point disappears.

Has anyone encountered this? What's the problem?

link|improve this question

Can you show us some code from the site? perhaps you could host a small html page with a single unordered list where this problem exists somewhere. – Justin Dearing Jun 13 '11 at 17:02
<p>Create your account: <ul><li>You must complete the application</li> </ul> </p> - It's the simplest possible list. I have the problem everywhere throughout the site, on nested ULs and on simple ones like this. It's not the HTML. – noogrub Jun 13 '11 at 18:11
So you think its in your CSS? What if you remove the outer P tags? Did you remove all your CSS stylesheets? Did you validate your css? – Justin Dearing Jun 13 '11 at 18:27
Justin, thank you! Commenting out the CSS fixed the problem. Turns out it was ul{display: list-item;} causing the issue. Since I don't really need this CSS property set, I simply commented it out. – noogrub Jun 13 '11 at 19:35
Ok I provided an answer, please mark as correct. – Justin Dearing Jun 13 '11 at 21:02
feedback

1 Answer

up vote 1 down vote accepted

The error as our conversation in the comments proved, is caused by the css line ul{display: list-item;}

link|improve this answer
Thanks, Justin. – noogrub Jun 15 '11 at 13:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.