How to display an image on a form
To display an image, such as a company logo, on a form, you can utilize the Add Notes field. Follow these steps to configure any form in your application to include an image:
- Navigate to the form builder of the 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 be shown. Clear the default content and click the Edit HTML icon (
).

- Add an <img> tag to the HTML with the public image URL as shown below.
- <div>
- <img src="<Public_image_URL>" width="150" height="70">
- <br>
- </div>
Where,
"<Public_image_URL>" | Is the TEXT that represents the URL of the public image that needs to be displayed in the form.
|
See How it Works
- Understand add notes field