Bootstrap navbar isn't working correctly

71 views Asked by At

Every time I click on one of my links that I have in my navbar, it "disappears". I put that in quotes because I have my website background set as white, and the default hover and selection color is white. How do I change the default hover and selection color with the default bootstrap template? Thanks in advance!

1

There are 1 answers

7
Izzy On BEST ANSWER

Assuming you haven't made any changes to the nav classes something as simple as

.navbar .nav li a:hover {
color: #000;
}