I have a popup link on my product page, that on Browser and mobile can’t scroll.
pass: 1234
I have a popup link on my product page, that on Browser and mobile can’t scroll.
pass: 1234
Hi @jopmoreira
Can you send me a screenshot or video showing which popup is not scrolling?
Dear @jopmoreira
To resolve the issue, please follow these instructions:
dialog.popup-link__content.dialog-modal {
pointer-events: auto !important;
}
Regard
Eric from Shopplaza
It’s better to keep the close button fixed+visible.
I’d recommend this code:
.popup-link__inner {
max-height: 100%;
overflow: auto;
pointer-events: auto;
}
dialog.popup-link__content {
height: 100%;
}
You can add it to the “Theme Settings”-> “Custom CSS” when in “Edit theme” editor.
Or can put at the bottom of your stylesheet, assets/base.css if it’s already modified.
Thanks. It works but the fixed close button+visible only works on mobile.
It works and i can close the popup by just clicking outside of the window but could it be possible to fix the close button?
hmm. I’ve amended the code in my original post, should work on desktop now too.