Display a text image URL as an image in an HTML component

I have an image URL stored as text in a text field, {Image URL}

How do I use that to display as an image in an HTML component?

1 Like

When using a regular text field inside a List Components HTML you can simply add the Variable inside the Image option or paste the following into the HTML source code
<img src="{Image URL}"/>


When using a HTML component on the details page, you can do the same thing but you’ll need it to be a raw variable like so
<img src="{!!Image URL!!}"/>

3 Likes

Thanks Chem!

I must have mixed up memories, I glanced right over that because I thought it didn’t work for images.

3 Likes

So glad I found this!!