lojmann
Joined: 16 Sep 2006 Posts: 1
|
Posted: 16 Sep 2006 - 5:52 pm Post subject:
Creating menus with 3th levels menu-items another place
|
|
|
Hi,
I'm new in Typo3 and TS and have a basic problem.
I have a vertical menu, where all my menu items for the moment is printed as a one-line row.
I would like to put my second level menu items on a new line in the same <td>-tag and then my 3th level menu items in another <td>-container on the left of my page.
I'm using TemplaVoila and has just created some basic HTML templates (3 different files, one for each level)
My TS code is like this:
| Line: |
Code: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| |
lib.mainMenu = HMENU
lib.mainMenu.entryLevel = 0
lib.mainMenu.1 = TMENU
lib.mainMenu.1.expAll = 0
lib.mainMenu.1.NO {
allWrap = |
after = - |
}
lib.mainMenu.2_LEVEL1 = HMENU
lib.mainMenu.2_LEVEL1.entryLevel = 1
lib.mainMenu.2_LEVEL1.1 = TMENU
lib.mainMenu.2_LEVEL1.1.NO {
allWrap = |
after = <br>
}
|
|
Show complete code
|
I'm running Typo3 Ver. 4.0.1.
I've tryed to look into the TSref pages and on this page here, but can't see why it don't work for me...
I tryed to map the sub-menu to my left <td>-container, to have the 3th menu level there, but it don't work... I newer see my 3th level...
Hope you guys can help me
/Thomas |
|