You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can tell, the option to make the content of the pop up scrollable only exists when setting a specific height. I ran into a problem where my content exceeds the screen height on certain screens and clips out of frame with no option to scroll. Setting the container's height to 100% and enabling scrolling in the plugin creates white space on larger screens. I believe this problem would be solved when setting a max height along with enabling auto height and handling the overflow by scrolling.
@chris-rohrer - I'm assuming your using something like Fixed Position? If so try without it. The only other setting that would have an effect here is whether or not the Overlay is Disabled.
Disabling the overlay with a non fixed position popup would result in the overflow of the popup being scrollable with the page.
Enabling the overlay with a non-fixed popup would result in a scrollbar being added to the overlay div, allowing excess lengthy popops to scroll up and down.
When you activate Fixed position though things change a bit. Now the popup is locked in place, so scrolling with the page or overlay is not possible.
Fixed position issues primarily stem from not knowing exact height/width.
We have plans to rewrite our positioning system from scratch, it might be something we can overcome at that time.
Will give your quick fix a check and see if its something we can work in without side effects.
This was never confirmed as a bug as opposed to a configuration issue.
If the OP was using fixed position & CSS auto height, they would effectively have to add custom CSS to set the height, which defeats using Auto in the first place.
Instead just choose one of the responsive sizes and use the min/max controls for width, then height is auto adjusted and scrollable as desired.
Auto is not really a viable option going into v2, and likely to be removed as it simply doesn't work reliably with many content types. It works as intended though, but the results are rarely what people would actually want/intend.
As far as I can tell, the option to make the content of the pop up scrollable only exists when setting a specific height. I ran into a problem where my content exceeds the screen height on certain screens and clips out of frame with no option to scroll. Setting the container's height to 100% and enabling scrolling in the plugin creates white space on larger screens. I believe this problem would be solved when setting a max height along with enabling auto height and handling the overflow by scrolling.
My quick CSS fix:
.pum-container {
max-height: 100vh;
overflow: auto;
}
The text was updated successfully, but these errors were encountered: