[TYPO3-UG US] Re: navigation question

Tony Lush tlush at advancewm.com
Thu Oct 1 15:35:09 CEST 2015


The reason you are not seeing the third level down is that the third level of menu has not been enabled.

If you look at the file /typo3conf/ext/bootstrap_package/Configuration/Typoscript/setup.txt and go down tot he section lib.navigation.main
you will see that the second level of the menu is activated with

        2 < .1
        2 {
            wrap =  <ul class="dropdown-menu">|</ul>
            SPC = 1
            SPC {
                wrapItemAndSub = <li class="divider"></li><li class="dropdown-header">|</li>
            }
            IFSUB >
            ACTIFSUB >
            CURIFSUB >
        }

Depending on how you want to handle the CSS, you could simply repeat those settings by adding just below that code:
       3 < .2

That turns on the third level with the same configuration as the second level. You will probably have to remove the 
            IFSUB >
            ACTIFSUB >
            CURIFSUB 
Lines from the 2{...} section if you want to enable those css classes defined in the 1{...} section for the dropdowns

If you want to change classes, etc, then adjust accordingly.

Regards -- Tony

-- 
Tony Lush
AdvanceWebMarketing.com


More information about the TYPO3-UG-US mailing list