2012-05-07, 01:11:43
Try out the plugin "Nested Menus" (http://get-simple.info/extend/plugin/nested-menus/256/).
It will transform the navigation to a form like
which you can easily style using CSS. The plugin can also return your navigation as a two-dimensional php array, making it possible to create a custom structure if you need something different from the default one.
Hope that helps
joene
It will transform the navigation to a form like
Code:
<li>
<a href="parentPage">Parent Page</a>
<ul>
<a href="childPage1">Child Page1</a>
<a href="childPage2">Child Page2</a>
</ul>
</li>
Hope that helps
joene