jqModal IE7 Drop All Contents at the bottom fix
This seems to be a fix for jqModal when IE7 drops all to the bottom of the page while the top of the page is the jqModal.
Open the css that came with jqModal and change to the following codes
.jqmOverlay {
background-color: #000;
+position:absolute !important;
}
The +position:absolute !important is a css targeted for IE7, i know its a hack, if you don’t what that you can include a css specially design for IE
Open the javascript and search for if(ie6){$(‘html,body’) and change it to if(ie6||ie7){$(‘html,body’), resulting in
if(ie6||ie7){$('html,body').css({height:'100%',width:'100%'});if(o){o=o.css({position:'absolute'})[0];for(var y in {Top:1,Left:1})o.style.setExpression(y.toLowerCase(),"(_=(document.documentElement.scroll"+y+" || document.body.scroll"+y+"))+'px'");}}
Lastly still on the javascript search for ie6=$.browser.msie&&($.browser.version == “6.0″) and change to ie6=$.browser.msie&&($.browser.version == “6.0″),ie7=$.browser.msie&&($.browser.version == “7.0″), resulting to
var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&&($.browser.version == "6.0"),ie7=$.browser.msie&&($.browser.version == "7.0"),F=false,
i=$(
Related posts:

Thank YOU! I have been banging my head on the table over this one!!
Thanks a lot !!
Many hours passed to found the bug and…….i found your post !
thanks, thanks, thanks……etc…
Add me to the list of people extremely thankful for this info . IE7 positioning FAIL.
THANK YOU!!!!
Your post saved my life…
Damn! I thought it was a IE7 css bug, tried all my css tricks. Great work!
Cool thanks a lot.. maybe its also useful to set some z-index
example:
jqmOverlay: z-index: 200;
jqmWindow: z-index: 300;
(if you are using any other pop up jquery things)
Mike
Thank you – Saved few hours
Thank so much!!!!!
Thank so much!!!!!
*yeah*
Thanks a lot!!!!!!!!