How to change the width/height of the published form
The width of the
published form can be changed to fit your needs by following the steps below. These steps can be applied to any published form in your application to change its width.
- Navigate to the form builder of the published form and include an Add Notes field.

- Click on the content section in the Field Properties of the notes field to edit the content. A rich text editor pop-up will appear.

- Clear the default content and click the Edit HTML icon (
).

- Add an <img> tag to the HTML. Provide values for the width attribute depending on your preference. This will create an empty image container that can be used to adjust the form's width.
- <div>
- <img width="900px">
- <br>
- </div>
- Similarly, the height of the form can be adjusted by replacing the width attribute with the height attribute in the above script
- <div>
- <img height="10px">
- <br>
- </div>

Note: It's not advisable to provide both height and width attributes within the same <img> tag, as this will result in a visible image container with no image displayed.
See How it Works
- Understand add notes field
- Understand form publish