Articles on typo3 menu donotlinkit

TYPO3: XHTML Valid 3 Level Menu in Typoscript

This is sort of a long snippet, but anyway it is an example of making a vertical 3 level menu, which expand and collapse according to the active and current chosen list-item / page. The menu made as nested unordered list, and further it is wrapped in a box made of divs, where the title typo3-xhtml-valid-3-level-menu-in-typoscript/" class="more-link">More >

TYPO3: Making a simple menu as an unordered list in XHTML

This example how to make a menu as an unordered list, by enabling ACT (active) and CUR (current) it sets the <li> tags with attributes class=”active” and id=”current” respectively. The current page is wrapped in <span> and not linked. ## MainMenu [Begin] lib.mainMenu = HMENU lib.mainMenu.entryLevel = 0 lib.mainMenu.wrap = <ul>|</ul>     lib.mainMenu.1 = typo3-making-a-xhtml-valid-menu/" class="more-link">More >

TYPO3: How to make a path/breadcrumb in typoscript

Get the titles of the root page down the hierarchy to the current page without linking the current/active page: ## Path [Begin] lib.path = HMENU lib.path.special = rootline lib.path.special.range = 0 lib.path.1 = TMENU lib.path.1 {         noBlur = 1         NO.linkWrap = |&nbsp;/&nbsp;|*||*| |         typo3-making-a-pathbreadcrumb-in-typoscript/" class="more-link">More >