Page 1 of 1

how many levels appear differently in a menu?

Posted: Fri Nov 24, 2006 5:31 pm
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.

Re: how many levels appear differently in a menu?

Posted: Fri Nov 24, 2006 7:19 pm
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;
}

Re: how many levels appear differently in a menu?

Posted: Fri Nov 24, 2006 8:35 pm
by bruco
mark wrote: In the default install you will find this...
Well done. Many thanks for your prompt reply. :)