Forum Moderators: not2easy
Thanks.
For instance...
HTML
<div class="nav" id="section1">
<ul>
<li><a href="">menulink1</a></li>
<li><a href="">menulink2</a></li>
<li><a href="">menulink3</a></li>
</ul>
</div>
CSS
#section1 ul li a {}
#section1 ul li a:hover {} and then repeat for section2, section3 etc... This then styles just the links within each section (ie. are descendents of).
If each of your navigation menus are basically the same but have just a few differences in each section, then apply a common class to each section ('nav' in this case) which you may have done already and then simply override the differences with your IDs?