
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