Hallo Paul,
ich mache immer mein setup mit shortcut auf root und verwende ein javascript 
snippet:

function active_HomeLink_init() {
        // Set Home Link to Active when on Home Page
        $('.main-menu li').each(function () {
                var href = jQuery(this).find('a').attr('href');
                if (href === window.location.pathname) {
                        if ($(this).is(":not(.active_menu_item)")) {
                                $(this).addClass('active_menu_item is-active');
                        }
                }
        });
}
active_HomeLink_init();

Gruß
maty
_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german

Antwort per Email an