Home › Forums › CSS › Problem with jQuery Lightbox › Re: Problem with jQuery Lightbox
November 16, 2012 at 4:10 am
#114530
Member
Hi @Raza
Your problem seems to be that in the CSS you (or the plugin code) has added some vertical scroll, probably there if the image is too large to fit on the screen. Make these changes and it goes away.
Find this code below;
.fancybox-lock .fancybox-overlay {
overflow-x: auto;
overflow-y: scroll;
}
And change it to;
.fancybox-lock .fancybox-overlay {
overflow: auto;
}