Need Help With Popup for mobile

How can I make the popup fill the whole screen on mobile devices?

1 Like

Have you tried experimenting with height/ width of 100% vs a pixel measurement?

Yes, but I have an issue with height. I want the popup to be in the middle and not scrollable.

Here is my setup:
Screenshot 2024-01-12 224021

And here is how it looks.

the width part worked great but the height is not as expected.

Here’s the trick I use since popus don’t really look good on mobile and they only stick waaaay at the top.

-Drag a popup on the page

  • Remove all borders, shadows and background leaving it all transparent.
  • Set alignment to “align to parent”
  • Pop in a group just at the centre
  • Fill it with the count you’d fill your regular popup with.

That way you can control the position, it’s more customisable and looks way better!

or you use custom css with:

width: 100vh!important;

How can i add custom css to the popup?