dillon-sellars / BeautyTips

BeautyTips is a jQuery tooltips plugin which uses the canvas drawing element in the HTML5 spec to dynamically draw tooltips (sometimes called "talk bubbles" or "help balloons") associated with a html element on the page.
35 stars 8 forks source link

z-index issues in IE7 #2

Open jakemonO opened 12 years ago

jakemonO commented 12 years ago

Am I the only one still having z-index issues with BeautyTips in IE7? bgiframe doesn't seem to help matters any. It's a pretty complex nested div, but I've set all the divs I have overlapping issues with to z-index: auto. The visual manifestation is that any DOM elements that come after the tooltip (even in the same div) display on top of the tooltip.

dillon-sellars commented 12 years ago

Try btParentNode: 'body' - that should fix it. I'll probably make that the default in the next version.

jakemonO commented 12 years ago

assuming you mean offsetParent? Thanks, it worked