Hi, One of my users with XP Pro and ie8 is having a problem with thickbox not centering properly, for all uses of thickbox (he says) - the images display half-off the page on the bottom border. Here is a screenshot he provided. Any ideas? Thanks, Peter
I also know from the user that when I asked him to test the demos on the Thickbox demo page, they were misplaced in the same way. So this has nothing to do with my site. But when he switched to FF, it was fixed. I believe he probably has a version of ie8 that is problematic with thickbox. I asked him to let me know what happened if he could update ie8 but haven't heard anything back.
I used amazing thickbox tool for next site http://afrodita-nsk.ru (sorry for the URL, only if you want to realise that it works under IE 8). I have find solution for IE 7 and IE 8 perfectly (IE 6 works fine without this fix): --- tb_position() { var msie=6; if(jQuery.browser.msie) { msie=parseFloat(navigator.appVersion.split("MSIE")[1]); } $("#TB_window").css({marginLeft:'-'+parseInt((TB_WIDTH/2),10)+'px',width:TB_WIDTH+'px'}); if(!(jQuery.browser.msie&&msie<7)) { $("#TB_window").css({marginTop:'-'+parseInt((TB_HEIGHT/2),10)+'px'}); } } -- You can write me if you have any questions for this solution.