I'd like to change the rollover color of the pills and the active pill color. My html looks like this:
<div class="theme">
<div class="banner">
<h1>Sandstorm</h1>
<ul class="nav nav-pills red">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
And my CSS looks like this:
.red .active a,
.red .active a:hover {
background-color:red;
}
But the color won't budge. What am I missing?
(I'd also like to change the font... but maybe that's too ambitious.)