Viewing 1 replies (of 1 total)
  • Thread Starter mandawahoo

    (@mandawahoo)

    Found a fix for this from running a few searches.

    https://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.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: ThickBox] Thickbox sits too low in Internet Explorer’ is closed to new replies.