I need to be able to have a separate list element type for each level of an ordered list. The editor is putting in divs when you try to indent via the toolbar instead of the appropriate indented list element.
My style:
ol ol
{
list-style-type:lower-alpha;
}
ol ol ol
{
list-style-type:upper-roman;
}
ol ol ol ol
{
list-style-type:upper-alpha;
}
- This would be an "a"
- This would be an "I" - or roman 1 (one)
- This would be a "A"
The div insertion issue only happens with Internet Explorer. Firefox works fine.
Thanks!
~ Jason