I want to change the background and text color in a bootstrap navbar but it's not changing as expected... Here is my custom CSS:
.navbar-default .navbar-fnt {
    color: #FFFFFF;
}
.navbar-default .navbar-backgrnd {
    color: #CC3333;
}
And the relevant HTML:
<div id="menu" class="navbar navbar-default navbar-fnt navbar-backgrnd">
    <div class="navbar-header">
        <div class="collapse navbar-collapse">
              ul and li
        </div>
    </div>
</div>
I can't figure out why this won't change the background and text-color - can anyone help?
 
     
     
     
    