Search code examples
lightbox2

Lightbox Working Fine but Not Showing Scrollbar


I am using lightbox2 but it hides my page scrollbar while opening, after closing scrollbar it stays hide. I have checked css, if there is some issue with my blog, please let me know.

I have tried all browsers but same is happening on all browsers.

Link to my page which have problem , you may check this...2

Please help me out..


Solution

  • change your css.. whenever you are clicking on the image class named CSS_LIGHTBOX_FIXED_FRAME has been added to html tag and that class has the following css

    html.CSS_LIGHTBOX_FIXED_FRAME {
    height: 100%;
    margin: 0;
    overflow: hidden !important;
    width: 100%;
    }
    

    remove the overflow:hidden part from above and you will have your scrollbar back