Hello,
I have a problem with the font-size of my tooltips with IE.
I've overriden the following CSS to change some parameters, but font-size does not work for IE (background-color works)
#tooltip{
position: absolute;
z-index: 3000;
border: 1px solid #111;
font-size: 1px;
padding: 5px;
font-size: x-small;
/* for IE */
filter:alpha(opacity=80);
/* CSS3 standard */
opacity:0.85;
}
Btw, opacity/filter works at the first pass !
Finally, here is the JS :
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$("span").tooltip();
});
</script>
If you have any idea.. thanks in advance.