View Single Post
Old 03-02-2010, 04:34 AM   #1
bhuvana786
Enthusiast
bhuvana786 began at the beginning.
 
Posts: 37
Karma: 10
Join Date: Aug 2009
Device: Kindle
Numbered list continuation

Is there any way to style numbered list continuation using html elements in ADE?

Example:
1. first item
2. Second item
3. third item

Section heading

4. Fourth item
5. fifth item

html coding:
<ol>
<li>first item</li>
<li>second item</li>
<li>third item</li> </ol>
<h2>Section heading>
<ol start="5">
<li>Fourth Value</li>
<li>Fifth value</li>
</ol>

or

<h2>Section heading>
<ol>
<li value="4">Fourth Value</li>
<li>Fifth value</li>
</ol>

But none of them works with ADE. Can anyone advice how to achieve this layout using stylesheet with these elements (ol, li)?

thanks, B
bhuvana786 is offline   Reply With Quote