Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if anyone can help me to make this popup behave under IE the same as in FF.

The application is in an intranet, so I can't give you a direct link, but as shown in the picture below, when I pass the mouse over the link, in FF I see the right scroll bar (get longer/window is resized) but in IE nothing happen even if the popup overflow the height of the the page.

Snapshot FF 3.6.16: Snapshot FF 3.6.16

Snapshot IE 8.0 Snapshot IE 8.0

The CSS:

a.info {
 font-weight:normal; position:relative; text-decoration:none;
}

a:hover.info {
 background:none; text-decoration:none; z-index:10;
}

a.info span {
 display:none;
}

a:hover.info span {
 background:#FADD7F; border:1px solid #00629F; color:#666666;
display:inline; font-size:80%; font-weight:normal; left:20px;
line-height:12px; padding:2px 4px; position:absolute; text-align:left;
top:20px; width:150px; z-index:99;
}

a.info_large {
 position:relative; text-decoration:none;
}

a:hover.info_large {
 background:none; text-decoration:none; z-index:10;
}

a.info_large span {
 display:none;
}

a:hover.info_large span {
 background:#FADD7F; border:1px solid #00629F; color:#666666;
display:inline; font-size:80%; font-weight:normal; left:20px;
line-height:12px; padding:2px 4px; position:absolute; text-align:left;
top:20px; z-index:99;
}

The HTML:

<td nowrap="nowrap" class="tailleListe">  
<a class="info_large" href="../odm/odm_management.php?odm_id=2035893">2035893   
<img border="0" src="../images/infos.gif">  
<span>  
23/03/2011 (Stéphane Schneider) : qsd<br>  
qsd<br>qsd<br>qs<br>d<br>qsd<br>qs<br>
d<br>qsd<br>qs<br>dqs<br>d<br>qsd<br>
qsd<br><br>qsd<br>qsd<br>qsd  
</span>  
</a>    
</td>

You can download the complete page here [zip]

Any idea about how to figure out with this problem, how to fix the render of this page to become the same under IE/FF ?

Look at the circle and the distance between the scroll bar and the bottom of the page

share|improve this question
1  
Try to make it top position last 5 rows .. – Anand Thangappan Apr 7 '11 at 9:56
Can you explain please? – Proxium Apr 7 '11 at 13:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.