Nested Ordered List Styles

  •  08-08-2008, 2:13 PM

    Nested Ordered List Styles

    I have two different css files. One for my normal asp.net page that displays the content and one for the editor.
     
    In both css files the below styles are identical. It works as intended in the normal asp.net page and it does not for the editor.
     
    ol li
    {
        list-style-type: decimal;
    }

    ol li ol li
    {
        list-style-type: lower-alpha;
    }

    ol li ol li ol li
    {
        list-style-type: upper-roman;
    }

    ol li ol li ol li ol li
    {
        list-style-type: upper-alpha;
    }
     
    I can send you screenshots if you need them.
     
    Thanks!
View Complete Thread