|
Did you fix it ? I'm not seeing any problem in FF 2.0.
I looked at your CSS, and you do have some hacks in there that will make a mess in IE 7:
/* yay IE hack - display or visibility don't work */
* html .dem-graph a i, * html .dem-graph a:hover b {
filter: alpha(opacity=0);
display: block;
}
* html .dem-graph a:hover i {
filter: alpha(opacity=100);
display: block;
}
The *html hack won't work with IE 7, so it should be moved out of there, then use conditional comments to target the older IE browsers in a separate css file that contains only the 'fixes' you need for them.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|