---
title: Can I change my form's width when embedding it as a popup? | Paperform Help Center | Paperform
description: Paperform doesn't provide tools to modify the width of your embedded form. An alternative to in-built tools is to apply some CSS rules within the page your form pop-up appears on.
url: "https://paperform.co/help/articles/can-i-change-my-forms-width-when-embedding-it-as-a-pop-up"
type: static
generatedAt: "2026-04-04T00:42:00.882Z"
---

Can I change my form's width when embedding it as a popup?
### Embedding

Paperform doesn't provide tools to modify the width of your embedded form.

If you are looking to change the size of your form's width, an alternative to the built-in tool is to apply some CSS rules within the page your pop-up form appears on. Providing the pop-up container with less available space may work to reduce the width of the overall form, although this isn't guaranteed.

### Example CSS

The following example restricts the pop-up form container to a width of `400px`. The example CSS rule should be added to the stylesheet for the page your form is embedded on.

```css
.Paperform__popupcontent {
    max-width: 400px;
}
```

### Related Articles
  [Can I add a form as a popup on my site?  Use our popup button, or make any element on your website show a Paperform in a popup when clicked.](/help/articles/pop-up-forms/)
[Can I embed a form without the background?  In order to embed a form without a background, change the form's background transparency.](/help/articles/can-i-embed-a-form-without-the-background/)
[Embedded form JS API (draft)  You can listen for submission and page change events using our draft API.](/help/articles/embedded-form-submissions/)
[How do I embed my form?  You can find embed codes in the form editor under Share → Embed.](/help/articles/embed-forms/)