jquery-cluetip
jquery-cluetip copied to clipboard
Position 'fixed' problem with IE
Hi there,
First of all, thanks for the great plugin. Now, to my issue. :)
I'm having a huge problem when positioning cluetips on IE (all versions).
I'm setting the position like this: positionBy: 'fixed', topOffset: -100, leftOffset: 0,
and my CSS for the cluetip looks like this:
.cluetip-outer{ font-size: 0.750em; width: 288px; height: 104px; border: 2px solid #d3d3d3; padding: 5px 0 0 20px; text-align:left; background: #e4f4f9; position: relative; display:inline-block; }
But the cluetip is showing with a 13px diference between Chrome/Firefox and IE.
Is there a way to fix this?
Thank you
Can you try adding the following to your css for .cluetip-outer?
zoom: 1;
*display: inline;
The two declarations need to go in that order, and they should be placed at the end of the .cluetip-outer rule.
Not sure if that will do it, but it's worth a shot.
Unfortunately it didn't worked.
I'm trying to avoid to use different scripts to IE and Chrome/Mozilla. If someone comes with a fix I'll be really glad.
Thanks again. :)