Possible to disable scrolling behind a lightbox?

  • robrandtoul
    Asked on April 27, 2014 at 10:32 AM

    When you overlay a form in a lightbox over a vertically scrolling page, is there a way to stop the page in the background from scrolling? 

  • Cesar
    Replied on April 27, 2014 at 1:52 PM

    Please add the following code to your webpage. (not injecting the code to your form). This should stop and disable scrollbars on the page you have the form embedded on.

    <style type="text/css">
    div.jt-content{
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    </style>

    Do let us know if you need further assistance. If possible please provide the URL of the website where the form has been embedded to. Thank you.