Chris Akins wrote:

> http://www.springfieldmo.gov/newsite/manager.html

> The left hand navigation list should show a white background on hover
>  for all link items.  It does just that except for the last item 
> (class="last") in IE7 only.  In that browser, the hover state is 
> ignored.

It looks like IE7 loses _all_ styles for background when
'background-image: none;' is declared, thus the link isn't re-rendered.
IE needs a reason to re-render links, or else it won't open up the
link-area properly and apply styles to it.

Add the style IE7 has lost along with the background-image for that
element/class, on :hover...

.navLocal a:hover {background-position: 0 100%;}

...to kick IE7 into gear by making it re-render and pick up remaining
and additional styles.

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/

Reply via email to