Hi,
I am trying to create a product navigation menu down the left hand side of a site. I would like the menu to show all top level Sections, and then subsections of the current section. For example, when in the "Computer Hardware" section the menu will display as follows:
------------------------
Computer Manuals
------------------------
Computer Hardware
------------------------
Accessories
Graphics Cards
Mother Boards
Processors
Hard Drives
------------------------
Computer Software
------------------------
I have created the following code which displays all top level sections, and all subsections. What i can't find from the help is a condition to "detect" the current section.
Any help appreciated!
Thanks
I am trying to create a product navigation menu down the left hand side of a site. I would like the menu to show all top level Sections, and then subsections of the current section. For example, when in the "Computer Hardware" section the menu will display as follows:
------------------------
Computer Manuals
------------------------
Computer Hardware
------------------------
Accessories
Graphics Cards
Mother Boards
Processors
Hard Drives
------------------------
Computer Software
------------------------
I have created the following code which displays all top level sections, and all subsections. What i can't find from the help is a condition to "detect" the current section.
Code:
<actinic:block type="TopLevelSectionList" /> <actinic:variable name="SectionName" /><br /> <actinic:block type="ChildSectionList" /> <actinic:variable name="SectionName" /><br /> </actinic:block> </actinic:block>
Thanks
Comment