Table of Contents |
---|
Method 1: Data URIs
We can host the images "inline", inside the form (i.e. Custom HTML) or Userview menu (i.e. Rich Text Editor) itself.
...
- In the webapps folder, create a new folder called images.
- Put the image file hi.png into the new folder.
- Go to your Userview Builder, edit the Userview Menu - Rich Text Editor.
- Click on HTML Source.
Add the img tag into the HTML Source Editor and construct the URL path to the image.
Code Block <img src="/images/hi.png"/>
...