Remove scroll bar from the pop-up form

Hi! How do I remove the scroll bar showing up in the pop-up form?

Hello @systemsoj

Can you share store URL?

HERE @niraj_patel

https://www.oliviajenkins.co/

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.ep-iFrameLarge { height: 100% !important; overflow: hidden !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hi @systemsoj

Paste this code in your base.css

.ep-iFrameLarge {
    height: auto !important;
    overflow: visible !important;
}

Let me know if it’s useful by like and accept my solution.

Regards

Team_OSC

Hi

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

1 Like

Hello @systemsoj
Go to online store ---------> themes --------------> actions ------> edit code-------> base.css/ theme.css.
and add this code at the very bottom of the file.

.ep-iFrameLarge {
    height: 701px !important;
    overflow: auto;
}

and the result will be

Let me know if this helped you.
Thanks

1 Like

thanks @GTLOfficial @PageFly-Richard @Team_OSC it helped