[jQuery] fonts aliasing issue with opacity overly over cycle plugin
Hi
I am having an issue in FF where I have a DIV that I am animating from
off the screen and overlaying part of the page.
on the page I have the cycle plugin running. If I move the mouse from
the overlay to the where the cycle plugin is used (I initiate it on
mouseover), the text in the overlay loses the anti-aliasing.
I am sure this has to do with opacity and fonts, just not sure how to
fix. the cycle plugin is using .jpg images
This is the core overlay CSS
#Contact {
background: black;
filter:alpha(opacity=85);
-moz-opacity:0.85;
-khtml-opacity: 0.85;
opacity: 0.85;
height: 1500px;
width: 370px;
position: absolute;
z-index: -1;
}
Thanks