> http://www.atcompany.net/evento

A couple of mistakes...

It's the <b> that shall have 'display: none' on :hover - not the entire
link.
The missing 'b' created the flickering, as browsers are being told to
remove the entire link upon :hover - which they will try but with pretty
unstable results.

Corrected hover-style:

#morillo a#evento:hover b, #morillo a#foro:hover b
{
   display: none;
}


Background-position is meant to be negative, and at least equal the
width of the link and/or image - except upon :hover. That's what keeps
the hover-state invisible (hidden outside the link) until you actually
hover the link.

Corrected link-styles:

#morillo a#foro {
position : absolute;
left : 270px;
top : 0;
background : url(../images/derecha.gif) no-repeat -139px 0;
}
#morillo a#evento {
position : absolute;
left : 0;
top : 0;
background : url(../images/izquierda.gif) no-repeat -139px 0;
}


regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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