Forums / General / Need help with ordered lists

Need help with ordered lists

Author Message

Noel Dickover

Thursday 16 October 2003 5:19:01 am

Greetings,

I would like to have nested ordered lists in my content, such as:

<---
<ol>
<li>item1</li>
<ol>
<li>item2</li>
</ol>
</ol>
--->
But unfortunately the WYSIWYG editor seems to strip the nested ordered lists out (leaving only on level of ordered list) even if I disable the editor and send directly to publishing. Also I would like to be about to use the "type" attribute to define the ordered list as uppercase letters. Default, the system does not allow me to do this.

Please let me know what I need to make this work,

Thanks in advance.

Marco Zinn

Friday 24 October 2003 12:03:32 pm

Please check, if your XML-sample is right. Because: it will probable not validate in ezPublish anyway and so, the XML parser strips out the inner "ol".
Try:
-----
<ol>
<li>item1</li>
<li><ol>
<li>item1.1</li>
</ol></li>
<li>item2</li>
</ol>
---

Marco
http://www.hyperroad-design.com

Dariusz Wlodarczyk

Tuesday 23 December 2003 1:25:38 pm

This don't work too :(