Cute Editor v6.1 - indenting unordered list issue

  •  04-13-2011, 9:29 PM

    Cute Editor v6.1 - indenting unordered list issue

    In cute editor v6.1, I had created the following unordered list:
    <ul>
    <li>Item 1</li>
    <li>Item 1a</li>
    <li>Item 1b</li>
    <li>Item 2</li>
    </ul>
     
    If I highlight Item1a and Item1b and then click on Indent text icon, it generates the following code:
    <ul>
    <li>Item 1</li>
    <li><div style="margin-left: 40px">Item 1a</div></li>
    <li><div style="margin-left: 40px">Item 1b</div></li>
    <li>Item 2</li>
    </ul>
     
    Ideally we would prefer the code to be:
    <ul>
    <li>Item 1</li>
    <li>
       <ul>
       <li>Item 1a</li>
       <li>Item 1b</li>
       </ul>
    </li>
    <li>Item 2</li>
    </ul>
     
    When I tested this in your online demo (v 6.6) it generates the code how we would prefer, but I need to know how we could do this in v6.1, since we need this functionality now and upgrading to v6.6 will take us some time to implement.
     
    Thanks for your help.
View Complete Thread