Hi folks,
I was wondering if you could take a look at the navigation on the site below. I want to create a site with similar navigation.
http://tinyurl.com/57h979
I've been searching the forums for something similar but haven't found anything yet.
Has anyone here created or seen something similar that I could use to create this type of navigation?
Any other pointers appreciated
Many thanks.
Ideas needed for a Menu
Re: Ideas needed for a Menu
Make menu call of just that section and it's siblings for each instance of the list you want where you want it...
Read Menu manager help...
Read Menu manager help...
-
christiaans
- Power Poster

- Posts: 300
- Joined: Tue Mar 04, 2008 10:37 am
Re: Ideas needed for a Menu
As mark stated, but now as an example:
So for example:
So for example:
Code: Select all
{if $count > 0}
<ul>
{foreach from=$nodelist item=node}
{if $node->depth == 1}
<li><a href="#">Link title</a></li>
{elseif $node->depth == 2}
<li class="daughter"><a href="#">Link title</a></li>
{/if}
</ul>
{/if}
