Mobile width setting

Can we add or way to change the width depending on device


It little big on Mobile - and if you change the width for mobile then Desktop is a little too small?

You might want to a scale option in UI instead of using css

1 Like

Hello @AndyF :wave:

Thanks a bunch for your feedback!

I cannot but agree that it would be great to have a setting for this in the configurator. If more users upvote this request, it might be considered in the future :slightly_smiling_face:

Guys, if you’d also like to change the popup width on mobile, please use this code in the Custom CSS field on the Settings tab of your widget’s settings:

@media (width <= 480px) {
  [class*='Popup__PopupContent-sc'] {
    width: 80% !important;
  }
}
1 Like