Okay. I'd just copy what you have for item 1. (Not 100% sure of my answer.) To add 1.1 and 1. 2 to Item 1 <..ul> <..li>item one</li> <...ul> <..li>item two clause one</li> <..li>item two clause two</li> <..li>item two clause three</li> </ul> <..li>item two <..ul> <..li>item two clause one</li> <..li>item two clause two</li> <..li>item two clause three</li> </ul> </li> Not sure if it needs more than what you have to end it? </ul> </li> <..li>item four</li> </ul>
No! Look carefully at the following:- <ol> <li>item one</li> <li>item two <ol> <li>item two clause one</li> <li>item two clause two</li> <li>item two clause three</li> </ol> </li> </ol> ... in the above, items 2.1, 2.2 and 2.3 are "nested" in a new list in item two. See where the <li> item two opens and then note where the </li> is placed. Barry -------------- On Fri, 14 Aug 2015 09:36:47 +1200, JFlorian <[email protected]> wrote: > Okay. I'd just copy what you have for item 1. (Not 100% sure of my > answer.) > > To add 1.1 and 1. 2 to Item 1 > > <..ul> > <..li>item one</li> > <...ul> > <..li>item two clause one</li> > <..li>item two clause two</li> > <..li>item two clause three</li> > </ul> > <..li>item two > <..ul> > <..li>item two clause one</li> > <..li>item two clause two</li> > <..li>item two clause three</li> > </ul> > </li> > Not sure if it needs more than what you have to end it? > </ul> > </li> > <..li>item four</li> > </ul> >