mandawahoo
Member
Posted 3 years ago #
I am using the thickbox with the NextGen Gallery here:
http://leointeriordesign.com/services/transformations/
Everything works in Chrome and Firefox, but when I open an image in Internet Explorer, it sits really low on the screen, below the fold. I noticed someone else using the plugin had the same issue. Is there any fix for this? Possibly something in the css that can be added?
Any help will be very appreciated.
http://wordpress.org/extend/plugins/thickbox/
mandawahoo
Member
Posted 3 years ago #
Found a fix for this from running a few searches.
http://www.honk.com.au/index.php/2009/09/03/jquery-thickbox-appearing-too-low-in-internet-explorer-78-ie-78/
To summarize, find this snippit of code in the thickbox/thickbox.css file:
#TB_window {
position: fixed;
<span>background: #<span>ffffff</span>;</span>
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
top:50%;
left:50%;
}
and replace it with:
#TB_window { /* IE7 Hack*/
position: fixed;
background: #ffffff;
z-index: 102;
color:#000000;
display:none;
border: 4px solid #525252;
text-align:left;
bottom:10%;
left:50%;
}
Fixed the problem for me! Hope this helps someone.