It doesn’t matter how high I set the z-index, or if I set position:relative; to the parent div, or if I set a higher z-index to parent div or any tweak I found in Google.
My tooltip will not be visible in Internet Explorer 7,
Is there any other property I could use to simulate z-index positioning?
How is the tooltip being positioned? Try adding
position:absolute; z-index:999to your tooltip div andposition:relativeto the parent to see how it reacts.It would be really helpful if you can post your page or some code.