I have:
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
...
</nav>
And I want to change the color of the navbar class above. I have tried using this code unsuccessfully to brute force changing the color:
.navbar {
  .navbar-inner {
    background-color: #2c2c2c;
    background-image: none;
  }
}
/* navbar */
.navbar-fixed-top {
    background-color: #990099;
    border-color: #E7E7E7;
}
NOTE: I tried the solution of a related question using TWBSColor but it didn't work unless I changed navbar-fixed-top to navbar which I don't want to do.
 
     
     
    