I'd like to change the color of my navbar fixed menu bar in Bootstrap. In application.css.scss I have this:
.navbar
.navbar-inner {
background-color: #2c2c2c;
}
}
In application.html.erb I have this:
<header class="navbar navbar-inverse navbar-fixed-top">
<nav class="navbar-inner">
Could someone explain why I'm still seeing black as the menu bar background (I suspect I am not matching the classes quite right).