vote up 1 vote down star

Hi,

While mousing over a particular label in my web application, the tooltip that has to be displayed gets hidden behind the adjacent control, thereby providing less visibility. It works in IE7 and Firefox properly, but not in IE6.Any possible solution to this problem?

Thanks, Geetha

flag

50% accept rate
set the z-index – Alec Smart Sep 4 at 7:07
z-index is not helping..still the problem exists in IE6!:( – Geethapriya Sep 4 at 10:01

2 Answers

vote up 0 vote down

Try setting the position as relative / absolute (is it is not already) and then explicitly set the z-index for every control

link|flag
tried this..not working though:( – Geethapriya Sep 4 at 10:02
vote up 0 vote down

This is an annoying 'feature' of IE6 to get around.

What I have done in the past is actually place an iframe directly behind the tooltip at the exact same location and size of the tool tip.

Eg of HTML:

<iframe id="iframeHint" runat="server" class="PopupHint"></iframe>
<div runat="server" id="divHint" class="PopupHint">
   Tool tip text here.
</div>

Eg of CSS used:

div.PopupHint
{
    position: absolute;
    width: 300px;
    left: -1000px;
    border: 1px solid #2F4F88;
    padding: 2px 2px 2px 2px;
    background-color: #E5ECF9;
    color: #000000;
    visibility: hidden;
    z-index: 1001;
}

iframe.PopupHint
{
    position: absolute;
    width: 300px;
    left: -1000px;
    padding: 2px 2px 2px 2px;
    visibility: hidden;
    z-index: 1000;
}

The javascript to display the tip would position the tooltip iframe and div at the exact same position with the z-index set to a smaller value to ensure it is behind the text div. The iframe will cover the other controls in IE6.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.