Creating a nested list is fairly easy - just break up the template into pieces accordingly. For example, a list is a ul containing a number of items, each of which can be an li. That li can contain standard text, or another list.
BTW, your markup above is invalid. Each nested ul should live within an li; an li is the only valid child element of a ul. - Bobby On Jul 21, 5:00 pm, ajamils <[email protected]> wrote: > Hello, > > How can I create nested list in CMS Version 9 ? I have the following > code that I need to convert to a list tag. > > <ul> > <li>Text and link</li> > <ul> > <li class="sub">Text and link</li> > <li class="sub">Text and link</li> > <li class="sub">Text and link</li> > </ul> > <li>Text and link</li> > <li>Text and link</li> > <ul> > <li class="sub">Text and link</li> > <li class="sub">Text and link</li> > </ul> > </ul> > > Thanks in advance. > Arsalan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/RedDot-CMS-Users?hl=en -~----------~----~----~----~------~----~------~--~---
