It would be a good idea to write valid markup:
http://validator.w3.org/check?verbos...e%2Fmfmayer%2F
It appears though that the problem only occurs in IE. And it appears as though this is only because you have partially disabled the scrollbars to begin with. It has nothing to do with the script but, it can probably be worked with. Before I get into that, using this (the absolute path):
Code:
#overlay{ background-image: url('http://people.freenet.de/mfmayer/assets/images/script/overlay.png'); }
In lightbox.css will solve the overlay problem in other browsers for your demo.
OK, the trouble with IE is that the overlay container is slightly taller than the page, this triggers the scroll bars. It would be difficult to test this but, most likely if you set its dimensions in lightbox.css like so:
Code:
* html #overlay{
background-color: #333;
height:99%!important;
width:101%!important;
back\ground-color: transparent;
background-image: url(assets/images/script/blank.gif);
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="assets/images/script/overlay.png", sizingMethod="scale");
}
That will take care of it.
Bookmarks