Ok I just viewed using IE6/7/8 and it looks as it should be
dont use IE9 yet so cant say...to fix the background not filling the whole page you can try this, In the lightbox css file you will see the code below this should fix what you mentioned but I cannot say what maybe wrong as it looks ok to be in the browsers I tested with...
Before
Code:
#overlay{
position: absolute;
top: 0;
left: 0;
z-index: 90;
min-width: 100%;
height: 500px;
background-color: #000;
}
After
Code:
#lbOverlay {
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000;
}
Bookmarks