orderedlist

The numbers of the ordered list appear on the right only in IE 8.

CSS snippet for the ordered list,

ol.results {
    clear:both;
    margin:0 1em 1em;
    padding-left:1em;
}

ol.results li.document {
    font-size:0.9em;
    line-height:1.2em;
    margin-bottom:1.75em;
    vertical-align:top;
}
li.document {
    color:#333333;
}
li {
    margin:0;
    padding-bottom:0;
    padding-left:0;
    padding-right:0;
    padding-top:0;
}

Html snippet, div tag containing the list items,

<div id="document-list">
    <ol class="results start="1">
    <li>
     <div class="document wrapper clearfix">
        <div class="document-header cleafix">
         Document title information
        </div>
        <div class="document-subheader clearfix">
         Document sub title information
        </div>
        <div class="document-body clearfix">
         Document contents
        </div>
        <div class=""document-footer clearfix">
         Document footer information
        </div>
     </div>
     </li>
     ..
     ..
     ..
    </ol>
</div>

Any help would be greatly appreciated

link|improve this question
Can you provide a sample of your html? – James Montagne Jan 12 at 19:51
My guess is IE8 does something like putting the number in the left margin or left padding. Because your left margin or left padding is only 1em the "#." doesn't fit inside and is pushed to the right when rendering. Try making the left margin and/or left padding larger. – LastCoder Jan 12 at 19:57
Please post an entire document that demonstrates the problem, or a URL. Whatever the problem is, it most probably isn’t in the CSS snippet posted. – Jukka K. Korpela Jan 12 at 19:58
@JukkaK.Korpela It's an internal site but I will try to put up the <div> containing the the list items – eLearner Jan 12 at 20:01
@JamesMontagne Here is a sample of the html – eLearner Jan 12 at 20:10
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.