Nested List Elements - CSS Styles

  •  07-17-2008, 4:35 PM

    Nested List Elements - CSS Styles

    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;
    }



      1. This would be an "a"
        1. This would be an "I" - or roman 1 (one)
          1. This would be a "A"
     
    The div insertion issue only happens with Internet Explorer. Firefox works fine.

    Thanks!
     
    ~ Jason
View Complete Thread