33

I have an <ol> (ordered list) and in FF, Safari, Chrome it is rendered correctly. However in IE9 it is showing all zeros. It is not a spacing/padding issue because I am able to see the zeros.

My HTML is as follows:

<ol> 
    <li>Enter basic company information</li> 
    <li>Select from our portfolio of products</li> 
    <li>Attach your employee census</li> 
    <li>Review your selections and submit your request.</li> 
</ol>

Anyone run into that problem and hopefully a solution?

ol issues

Adaline Simonian
  • 4,596
  • 2
  • 24
  • 35
Rkstarcass
  • 387
  • 1
  • 4
  • 9
  • 3
    You're going to have to provide a screenshot and some more code including css. I've tested it on IE9 and it's working fine http://jsfiddle.net/rpjrj/ – Hawxby Apr 07 '11 at 16:56
  • 1
    Are you sure it is a "zero" and not just a circle? Maybe your CSS has list-style-type:circle; We REALLY need some more HTML and CSS. – NakedBrunch Apr 07 '11 at 16:59
  • My list-style is decimal outside none. How do I add a screenshot here? – Rkstarcass Apr 07 '11 at 17:07
  • 1
    @Rkstarcass - Screenshot won't help. IIRC this bug can sometimes occur in Internet Explorer because of improper CSS. Please give us the URL of website where the problem occurs, or use jsfiddle.net to publish your code. http://www.maratz.com/blog/archives/2006/10/15/internet-explorer-ordered-list-non-incrementing-list-item/ seems to be related to behaviour you are observing. – duri Apr 07 '11 at 17:12
  • I am experiencing the same - but only when I use JQuery to dynamically hide/show divs containing the ordered lists. Changing list-style did not help. My CSS is too long to post here. IE9 in 9 mode and 8 mode. – avioing May 18 '11 at 03:18