Home > CSS > ThickBox IE7 positioning bug fix

ThickBox IE7 positioning bug fix

December 12th, 2008 Leave a comment Go to comments

The fix is posted in http://wordpress.org/support/topic/170320?replies=12#post-741557.

I am just copying it for easy reference.

Look in thickbox/thickbox.css

Around line 50, change all the below

#TB_window {
position: fixed;
background: #ffffff;
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
top:50%;
left:50%;
}

To

#TB_window { /* my IE7 Hack*/
position: fixed;
background: #ffffff;
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
bottom:10%;
left:50%;
}

  1. No comments yet.
  1. No trackbacks yet.