Page 1 of 1

Navigation and sub-navigation

Posted: Thu Sep 30, 2004 10:42 pm
by nils73
It looks like you can have a threaded navigation with at least a main navigation and one level sub-navigation. But what about 2, 3 or more levels of sub-navigation, i.e. something like this

--HOME
|
--ABOUT
|
--COMPANY
|
--TEAM

Question: is this possible (I didn't manage it) and if so, how?

Regards,
Nils

Re: Navigation and sub-navigation

Posted: Thu Sep 30, 2004 11:24 pm
by leen
nils73 wrote:It looks like you can have a threaded navigation with at least a main navigation and one level sub-navigation. But what about 2, 3 or more levels of sub-navigation, i.e. something like this

--HOME
|
--ABOUT
|
--COMPANY
|
--TEAM

Question: is this possible (I didn't manage it) and if so, how?
Oh yes, it is! :)

Content management -> Add New Content
Fill in this form
Click on 'Advanced'
Choose Parent

Cheers,

Leen

Re: Navigation and sub-navigation

Posted: Mon Feb 20, 2006 4:02 pm
by jmoney
What is the easiest way to make a menu item show it's on state in CMSMS?

Example..

Home / About / Contact

on the About page I want the nav to show as:

Home / About / Contact

Re: Navigation and sub-navigation

Posted: Wed Feb 22, 2006 6:42 pm
by nils73
This seems to be one of my first posts here ... this is far-out! ;-) But now I can probably answer my own questions (at least sometimes):

To have something like:

Home / About / Contact

or in HTML


  Home
  About
  Contact


you should add a class called "currentpage" to your link (if you use bulletmenu it will be automatically added):


  Home
  About
  Contact


and you should of course have a CSS where you have something like

a { text-decoration: underline; }
a.currentpage { text-decoration: none; font-weight: bold; }


or whatever you would like your links to behave. I do not like this "cloaking" of links that are active, but things will be better when 0.12 is out with MenuManager as westis and others told me.

Regards,
Nils