That's a bug in the way that the script determines the height of the overlay visa vis the height of the page.
If you were to change this (at the end of lightbox.css):
Code:
#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
to
Code:
#overlay{ position: fixed; top: 0!important; left: 0!important; z-index: 90; width: 100%; height: 500px; background-color: #000; }
That would fix it, but would mess things up in IE 6 and less which don't do fixed positioning. So instead of doing that, add this (highlighted) after your current styles:
Code:
<link rel="stylesheet" href="/lightbox/css/lightbox.css" type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="CSS/style.css" media="screen" />
<style type="text/css" media="screen"><!--
#layer1 { height: 20px; width: 280px; left: 780px; top: 170px; position: absolute; visibility: visible; }
#layer2 { height: 91px; width: 490px; left: 540px; top: 50px; position: absolute; visibility: visible; }
--></style>
<!--[if !IE]> <-->
<style type="text/css">
#overlay{ position: fixed; top: 0!important; left: 0!important; }
</style>
<!--> <![endif]-->
Bookmarks