My favorites | Sign in
Project Home Downloads Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 410: for IE6, nyro changes client width/height, resulting in non left aligned web sites moving
5 people starred this issue and may be notified of changes. Back to list
Status:  New
Owner:  ----


 
Reported by carlchat...@gmail.com, Jan 13, 2010
What steps will reproduce the problem?
1. Create a fixed width, centrally aligned webpage and launch modal in IE6, 
and launch a modal

What is the expected output? What do you see instead?
The background remains static and the modal pops up

What version of the product are you using? On what operating system?
The background shifts to the right and the modal pops up

Please provide any additional information below.
The issue is caused by these lines of code
} else if (isIE6) {
	body.css({
		height: (body.height()+200)+'px', //130%
		width: (body.width()+200)+'px', //130%
		position: 'static',
		overflow: 'hidden'
	});
}

I've removed the +200 and the issue has been resolved, however I'd like to 
clear up why the hack was required in the first place, and whether or not 
it is still necessary.

Other than that, thanks for an awesome plugin.

Feb 2, 2010
#1 JLHarb...@gmail.com
I am still having issues with the hack, and it only solved half my problem. 

My master div is still getting pushed over. 

http://deafdogdesign.com/2010/portfolio/index.html 

And this is the code that I have used to edit it. In comment 9, it wouldn't even pull up the modal. 
} else if (isIE6) {
				body.css({
					height: (body.height())+'px', //130%
					width: (body.width())+'px', //130%
					position: 'static',
					overflow: 'hidden'
				});

Powered by Google Project Hosting