how many levels appear differently in a menu?

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
bruco

how many levels appear differently in a menu?

Post by bruco »

I'm using the "Top simple navigation + left subnavigation + 1 column" template.

The first level of the menu is displayed at the top, while the other ones on the left. However, I have realized that the third level and the fourth one appear the same in the subnavigation menu. That is, the menu items in third level are indented with respect to the items in the second level, but the items in the fourth level have the same indentation of the items of previous level.
Can I change this behaviour? That is, can I have the items in the 4th level more indented than the menu items in the 3rd level?
Thanks.
Last edited by bruco on Fri Nov 24, 2006 7:54 pm, edited 1 time in total.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: how many levels appear differently in a menu?

Post by Dr.CSS »

In the default install you will find this...

/* third level links, more padding */
div#menu_vert ul ul ul a {
  padding: 0.3em 0.5em 0.3em 4.3em;
  background: url(images/cms/dash.gif) no-repeat 2.8em center;
}

Copy it and paste it below itself and change it to...

/* fourth level links, more padding */
div#menu_vert ul ul ul ul a {
  padding: 0.3em 0.5em 0.3em 4.3emAdd more padding here
  background: url(images/cms/dash.gif) no-repeat 2.8em center;
}
bruco

Re: how many levels appear differently in a menu?

Post by bruco »

mark wrote: In the default install you will find this...
Well done. Many thanks for your prompt reply. :)
Locked

Return to “CMSMS Core”