CSS classes: base + optional. How to determine?
3 answers
You can try
.navigation.mainPage { width: 999px; } but this one does not work in IE6 . You can try to get by doing
<div class="navigation navigation-mainPage"></div> and then CSS
.navigation-mainPage { width: 999px; } Even if this is not the most pleasant solution, but I do not know anyone else.
+2