I tried to change the background color of navigation bar of MVC project. I tried changing the "bootstrap.css" file under Content folder.
.navbar-inverse {
background-color: #222222;
border-color: #080808;
}
I changed the color to #5A2506, but after re-loading it is still showing #222222 color. But when I change the color via developer tools of chrome the color is changed ,why?
.navbar-inverse {
background-color: #5A2506;
border-color: #080808;
}
!importantkeyword to the background-color to see if that fixes it?background-color: #5A2506 !important;