
Originally Posted by
scott1964
I read the excellent article. Thank you for posting that. My problem isn't in understanding what's wrong so much anymore as in trying to understand how to fix it. It sounds like I need to code something really convoluted in there like. Why not start at the top of the dom (or thereabouts) if that's the case.
body .threeNavStructure threeNav_pos2_off:hover
But that doesn't work.
| scott
I'll be honest, I'd rework that whole navigation - it's a lot more complicated than it needs to be:
Code:
<ul class="threeNavStructure">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About The Fund</a>
<ul class="active">
<li><a href="structure.html">fund structure</a></li>
<li><a href="management.html">fund management</a></li>
<li><a href="distribution.html">fund distribution</a></li>
<li><a href="selection.html">company selection</a></li>
</ul>
</li>
<li><a href="faq.html">FAQ</a></li>
</ul>
Then, I'd style the un-ordered list. Float the li elements, setting a common width and background-image to them. Then you can set the font-color on the hover like you had earlier.
Bookmarks