All Solutions

Explore all the solutions you can create with Paperform: surveys, quizzes, tests, payment forms, scheduling forms, and a whole lot more.

Explore all the solutions you can create with Paperform: surveys, quizzes, tests, payment forms, scheduling forms, and a whole lot more.

See all solutions
Connect with over 2,000 popular apps and software to improve productivity and automate workflows

Connect with over 2,000 popular apps and software to improve productivity and automate workflows

See all integrations
Can I change my form's width when embedding it as a popup?

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.

.Paperform__popupcontent {
    max-width: 400px;
}