Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

SO I'm trying to make an all CSS lightbox such as the one on this page CSS Lightbox

but when the page is scrollable do to the height of it, and the user scrolls down, the fade stops, is there a way to stop this from happening?? So the fade covers the whole page regardless if they scroll or not..

THanks,

share|improve this question
I thought lightboxes disabled scroll – CAPSLOCK Apr 5 '11 at 18:51

2 Answers

up vote 3 down vote accepted

Change

.black_overlay {
display: none;
position: absolute;

to

.black_overlay {
display: none;
position: fixed;
share|improve this answer
Thank you worked perfect :) – Matt Apr 5 '11 at 19:58

I usually grab the height and width of the originating page's body and set the height/width of the fade to those dimensions using Javascript before I add it to the page. Are you looking for a CSS only option or would you be willing to use a bit of JS?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.