I have a navigation that uses the property last, and active. last makes the last list item have no border on the right, active changes the color of the selector when its active. I have one item on my site at trendstudiosorlando.com that uses both,
My classes are
Code:
#navigation li a.last {
border-right:none;
}
#navigation li a.active{
color: #609;
}
And here is the call of them
Code:
<li ><a class="active last" href="parties.html" title="Parties">Parties</a></li>
Right now, while the active class works on this, the last is not. Any reason why?