I am taking the first steps with Bootstrap Twitter and you need to expand the components. For example, I would like to change the background of the navbar, but without changing the source css file.
I tried to create a new .test class with a new background:
.test{ background-color: red !important; }
And I used it in hmtl like:
<div class="navbar navbar-fixed-top test">
But that will not work. How can I do that?
source share