Announcement

Collapse
No announcement yet.

heirachical section lists

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    heirachical section lists

    I would ideally a heirachical list of the catalog structure. Does anyone know if this is possible. I was told the sitemap could be used, but this does not give a true hierachical list. It produces a flat unordered list with sub sections indented more via style.

    I would like a nested unordered list. I believe some people have used JavaScript implementations of this but I do not want to have to use JavaScript.

    #2
    You could code your own, using a Block on the sectionlist, setting up your own parameters and coding to be used, thus replacing the actinic options entirely. If the sitemap does all you need apart from the style, then just remove the style seems the obvious choice?

    Comment


      #3
      You could export the catalog and sort by the Section header, but it depends on what you want to do with it?

      Comment


        #4
        I am looking for a semantically correct site structure as a nested unordered list like thus:

        <ul>
        <li>section 1</li>
        <li>section two
        <ul>
        <li>section two sub section 1</li>
        </ul>
        </li>
        </ul>

        From what I can see of the site map actinic does this:

        <ul>
        <li style="margin-left:1em;">section 1</li>
        <li style="margin-left:1em;">section two</li>
        <li style="margin-left:2em;">section two sub section 1</li>
        </ul>

        Comment

        Working...
        X