Ideas needed for a Menu

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
paddy
New Member
New Member
Posts: 4
Joined: Fri Aug 15, 2008 7:42 pm

Ideas needed for a Menu

Post 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.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Ideas needed for a Menu

Post 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...
christiaans
Power Poster
Power Poster
Posts: 300
Joined: Tue Mar 04, 2008 10:37 am

Re: Ideas needed for a Menu

Post 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}
Post Reply

Return to “Layout and Design (CSS & HTML)”