The HTML editor in Eventify Webview is a minimal editor designed for basic content. Before you start building your webview in HTML, you need to know exactly what is and is not supported — so your content doesn't silently disappear after saving.
The editor toolbar gives you these tools:
Undo / Redo · Bold · Italic · Underline · Insert Link · Source Code (edit raw HTML directly) · Preview (see how the content will look)
These HTML elements are blocked — if you add them in source view, they will be stripped on save:
| Blocked element | What it means |
|---|---|
| <h1> to <h6> | No headings of any level |
| <ul> | No bullet lists |
| <ol> | No numbered lists |
| <li> | No list items |
| Images | Not supported — confirmed by the on-page notice: *Images are not supported |
These elements are silently removed. You will not see an error — the content simply will not appear after saving.
Use the HTML editor for:
Paragraphs of text (<p>) · Bold, italic, underline inline formatting · Hyperlinks (<a href="...">) · <br> line breaks · Simple <div> containers · <span> with inline styles for colour or font size
Click the Source Code button in the toolbar to switch to raw HTML mode. This is useful for pasting pre-written HTML. Remember: any blocked elements (headings, lists, images) added here will not be saved.
Q: Why did my HTML content disappear after saving in Webview?
A: You likely used a blocked element — headings (H1–H6), lists (UL/OL/LI), or images. These are removed automatically. Rewrite the content using supported elements: paragraphs, bold/italic/underline, and links.
Q: Can I upload images in the Eventify Webview HTML editor?
A: No. The page displays an explicit notice: *Images are not supported. Images cannot be embedded via the HTML editor.
Q: Is there a character limit in the Webview HTML editor?
A: No character limit is applied in the editor.