Hi, I'm experiencing an issue with my CSS Bootstrap menu. I am unable to change the active link color, meaning that when I click on a link and move my mouse pointer out of the area, the link background turns white. I would like it to remain transparent. How can I make this change?
I have attempted the following methods:
navbar-default .navbar-toggle .icon-bar {
background-color: red;
}
.nav li:active {
background-color: transparent !important;
}
and numerous other solutions...