I am trying to modify the color of the active class in my HTML code as I create a nav sidebar. Here is the snippet from my code:
<div class="col-sm-2">
<ul class="nav nav-pills nav-stacked nav-static"> <!--stacked for vertical layout -->
<li class="active"><a>Create Case</a></li>
<li><a href="wf-listofcase.php">List of cases</a></li>
<li><a href="linksofapps.html">Links of Apps</a></li>
</ul>
</div>
Can someone please advise on how to change the color of the active class? Thank you in advance!