Change color of the active state of nav link

Hi Anyone knows where I can find the default CSS for the class .active? Im trying the change the color of the active page link which seems to be a dark grey color. Thanks.

No worries. Managed to resolve. Create a new item in your stylesheet and paste the code below. Replace hex/rgb value with your own color. Make sure that the active slider is checked under "nav item" is checked in the options panel.

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #333333; /* <----- change your color here*/ background-color: transparent; }

Happy coloring!!!!

well done on self serving your query :) but for awareness, the same method applies to overwrite the default bootstrap CSS files as you cant directly edit the Bootstrap defaults but you can overwrite in your own custom CSS, same goes for javascript too.