Links
Links
Links

The links above do change on hover. How did we fix it? We added this bogus, totally irrelevant rule, embedded in this document's <head>:

<style type="text/css">
<!--
#fubar a:hover {float: inherit;}
-->
</style>

This page has the same imported style sheet as the broken page, containing these same rules:

#b1 a {color: #0000FF;}
#b1 a:hover {
color: #000000;
background-color: #FF0000;
}
#b2 a {color: #FF0000;}
#b2 a:hover, #b2 a:active, #b2 a:focus {
color: #FFFFFF;
background-color: #333333;
}
#b3 a {color: #00CC66;}
#b3 a:hover, #b3 a:active, #b3 a:focus {
color: #FFFFFF;
background-color: #66CC33;
}

This bug has been fixed in IE7 internal builds and will not affect the final version

Back to Previous Page | More bugs