Page 1 of 1

Ideas needed for a Menu

Posted: Sat Aug 16, 2008 11:20 am
by paddy
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.

Re: Ideas needed for a Menu

Posted: Sat Aug 16, 2008 5:27 pm
by Dr.CSS
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...

Re: Ideas needed for a Menu

Posted: Mon Aug 18, 2008 6:30 am
by christiaans
As mark stated, but now as an 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}