What's the best way to add a link to an image on a post?

I need to make an image clickable, what’s the best way to do this?

Thank you.

  1. Start off by uploading the image the regular way with an image card
  2. Copy the URL for the image that’s now been uploaded
  3. Delete the image card
  4. Create an HTML card and insert the following code:
<figure>
    <a href="YOUR-LINK-GOES-HERE">
        <img src="THE-IMAGE-URL-THAT-YOU-COPIED-GOES-HERE">
    </a>
    <figcaption></figcaption>
</figure>

That’s it. If I’m not mistaken I’d guess that this setup won’t take advantage of any of the image responsiveness functionality. But it’ll work for what you want.

1 Like

This is helpful … but there HAS to be a better way to make images linkable.

1 Like