On 06/11/2006 09:18, Fora wrote:
> I'm experiencing the same problem.
> 
> http://www.arnoenzerink.com/design/logos.shtml
> http://www.arnoenzerink.com/styles/design.css
> 
> 
> It works neither in IE6 nor in IE7, although I do have the :hover on the <a> 
> elements.

Well, :hover works on your regular (non-image) links, so I'd say it's 
just this (and the other rules like it) which is breaking the effect:

.aave a:hover {
        background: url(../design/images/aave_thumb.gif);
        background-position: 100% 0%;
}

Try this instead:

.aave a:hover {
        background: url(../design/images/aave_thumb.gif);
        background-position: -55px 0;
}

to shift the image 55 pixels to the left, thus making the coloured 
section appear.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to