[Typo3] FCE multilevel bullet list?

Christopher bedlamhotel at gmail.com
Wed Sep 28 16:42:37 CEST 2005


On 28/09/05, Henry Wilhelm <henry at hexhe.de> wrote:
> Hello,
> i am really astonished, because i can't find a resolution for the
> following quit normal challenge:
> does anybody know how to make a flexible content element with repetitive
> data for a multilevel bullet list?
> in frontend output should look like this:
> <ul>
>     <li>first list item, level 1</li>
>     <li>second list item, level 1</li>
>     <ul>
>         <li>first list item, level 2</li>
>         <li>second list item, level 2</li>
>     </ul>
>     <li>third list item, level 1</li>
>    ...
> </ul>
>

I'm not sure about doing it in TV, but your html is invalid. You
should have this instead:

 <ul>
     <li>first list item, level 1</li>
     <li>second list item, level 1
         <ul>
             <li>first list item, level 2</li>
             <li>second list item, level 2</li>
         </ul>
     </li>
     <li>third list item, level 1</li>
    ...
 </ul>

-Christopher



More information about the TYPO3-english mailing list