As I navigate my first steps with Bootstrap Twitter, I find myself in need of extending components. Specifically, I am looking to customize the navbar background without altering the original css file.
My attempt involved creating a new class called .test
with the desired background color:
.test{
background-color: red !important;
}
I then applied this class in my html as follows:
<div class="navbar navbar-fixed-top test">
However, it seems that my approach is not yielding the desired results. How can I achieve the customization I am looking for?