How Images Work
For browser safety and privacy reasons documents containing images will need user input before the images can be rendered within the document. If a document is found to contain images, the image modal can be utilized to replace images with new ones.
Uploading Images
To upload an image simply click on the image icon button to trigger the image replacement modal. From there, you can replace each located image using the file selector. At this time, only files with extension of .png
, .jpg
, .jpeg
, .webp
, .heic
are able to be uploaded.
Note: .HEIC file types only work in Safari
Image Sizes
Depending on the image size, you may need to stylize the images to be smaller. This can be done by limiting the height and / or width.
Note: Images that are taller than the page + padding of the page cannot be rendered until they are resized. To fix this, resize the image and reload the page.
p img {
max-height: 100px;
}