How to change active link color in bootstrap css?

前端 未结 9 855
余生分开走
余生分开走 2021-02-08 03:00

I am using joomla 3 and bootstrap.min.js I am creating menu and giving special class in order to change hover, active, visited links and style of the menu. I could not find how

9条回答
  •  Happy的楠姐
    2021-02-08 03:43

    // Fix navigation menu active links
    $(document).ready(function(){
        var path = window.location.pathname,
            link = window.location.href
        ;
        $('a[href="'+path+'"], a[href="'+link+'"]').parent('li').addClass('active');
    });
    

提交回复
热议问题