How to change active link color in bootstrap css?

前端 未结 9 824
余生分开走
余生分开走 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条回答
  •  一向
    一向 (楼主)
    2021-02-08 03:37

    I suggest you creating an ID (#) selector locally for the Div that contains the a links, then take that id name in your style-sheet and override the existing rule.

    For instance,

    #abc a{xxx:xxx;}
    #abc a:active{xxx:xxx;}
    

    Hope this helps.

提交回复
热议问题