Oszkar Ambrus wrote: > The problem is, that when my cursor is above the second navigation > level, the main link (e.g. "Our Fellowship") goes back to normal > state on my website.
> [2] http://covenantfellowshipgalway.uuuq.com Add :hover to the li containing the anchor and sub-levels, like so... #masthead li.fellowship:hover a, #masthead li.fellowship a:hover, #masthead li.fellowship a.selected, #masthead li.fellowship a.active{ background-position: -75px -40px; } Won't work in IE6 and older without an "anything:hover" workaround like the one in the site you've borrowed from - which you'll need anyway, but all reasonably new browsers will play along right away. > Nevermind, I fixed it using http://www.cssmenus.co.uk/dropline.html :-) I guess that's ok - if you prefer the markup-garbage necessary to make that "CSS only" solution work, over a script that contains all the missing bits and pieces for your first attempt. Good to have choices. regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
