I thought it was odd that I could see the SVG when selecting from the media library, but couldn’t see it in the builder and couldn’t see it on the front end. It made sense why I couldn’t see it after inspecting the front end.
I’ve tried several different sizes, including default auto, but always shows 0 on frontend.
I added custom CSS to change the size and it immediately fixed the size issue.
$el > div > div > span > span > img {height:80px;width:80px}
I was able to repeat this process on another The Title element, although the CSS was slightly different:
$el > div > span > span > img {height:80px;width:80px;}
JPG
<img decoding="async" src="/wp-content/uploads/2026/06/sweden-henrik_sandgren-150x150.png" width="75" height="75" alt="Image" loading="lazy">
SVG
<img decoding="async" src="/wp-content/uploads/2026/06/Envelope-Mail-Icon-Yellow.svg" width="0" height="0" alt="Image" loading="lazy">

