How do I add a logo or image to a form?
1.In the Form Builder (of the Thereforeā¢ eForms interface), drag a File component into the Form Creator.
![SD_T_Design_Eforms_AddLogo_001](./images/sd_t_design_eforms_addlogo_001.png)
2.Under the Display tab, check the Hide Label and Disabled checkboxes.
![SD_T_Design_Eforms_AddLogo_003](./images/sd_t_design_eforms_addlogo_003.png)
3.Under the File tab, set Storage as Base64 and check the box Display as image(s), then click the Save icon.
![SD_T_Design_Eforms_AddLogo_002a](./images/sd_t_design_eforms_addlogo_002a.png)
4.Under the Data Tab, drag an image (or browse using the provided link) into the File component. Then click on the Save button.
![SD_T_Design_Eforms_AddLogo_004a](./images/sd_t_design_eforms_addlogo_004a.png)
![SD_T_Design_Eforms_AddLogo_005](./images/sd_t_design_eforms_addlogo_005.png)
![Info](./images/info.png)
|
How do I center the image when using File Object to show a picture function?
For full layout control, it is recommended to use a plain HTML element.
Embed the src of an image in plain HTML. The recommended solution looks like:
<img src="data:image/png;base64,<base64 encoded image data>"
Ā alt="Test" style=" display: block; margin-left: auto; margin-right: auto; width: 40%;"/>
This can generate this on a site like: https://www.base64-image.de/
Upload your image, and you can get the base64 string ā then paste it into the HTML element.
Note: you can add manual line breaks if the image data gets outside of the editor width.
![SD_T_Design_Eforms_AddLogo_006](./images/sd_t_design_eforms_addlogo_006.png)
Result:
![SD_T_Design_Eforms_AddLogo_007](./images/sd_t_design_eforms_addlogo_007.png)
|
|