Currently, I am using Bootstrap pills for my navigation bar. However, I am experiencing an issue where the active pill is not displaying with a blue background color as it should according to the default Bootstrap styling. Here is my code:
<div style="margin-left: 15px;margin-bottom: 15px;margin-top: 10px;">
<ul class="nav nav-pills">
<li class="active">
<a href="index.php">Home</a></li>
<li class=""><a href="Project.php">Projects</a></li>
<li class=""><a href="#">Employee</a></li>
<li><a href="#">Forum</a></li>
</ul>
</div>
You can view the output here.
It seems that only the home pill is currently in focus.