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.
how many levels appear differently in a menu?
-
bruco
how many levels appear differently in a menu?
Last edited by bruco on Fri Nov 24, 2006 7:54 pm, edited 1 time in total.
Re: how many levels appear differently in a menu?
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.3em; Add more padding here
background: url(images/cms/dash.gif) no-repeat 2.8em center;
}
/* 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.3em; Add more padding here
background: url(images/cms/dash.gif) no-repeat 2.8em center;
}
-
bruco
Re: how many levels appear differently in a menu?
Well done. Many thanks for your prompt reply.mark wrote: In the default install you will find this...

