Forum How do I...?

ordered lists, starting number not working

ixgal
hi,
I am using some ordered lists, where I would like to manually change the numbers of the items. For example:
<ol start="4">

My html looks ok, but on Prince I get always a "1" (instead of the number I am manually using for starting).
Thanks
mikeday
If try converting a simple document which just has this then it works:
<ol start="4">
<li>Fourth item</li>
<li>Fifth item</li>
<li>Sixth item</li>
</ol>

Are you applying the counter-reset property to ol elements in another CSS rule? This might override the rule in the default style sheet which checks the start attribute.