Found this content helpful? Log in or sign up to leave a like!
How do I caption an image?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2025
10:05 AM
When I embed an image into a Canvas page, I would like to add a caption (not just alt text), sometimes with an attribution and/or link to the image's source. Is that possible?
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2025
06:01 PM
It's hard to troubleshoot without seeing the code, but given that the image is to the right, you likely chose to "right align" it.
I tried it myself, and it changes the code to:
<figure>
<img style="float: right;" src="url" alt="alt text">
<figcaption>"caption text"</figcaption>
</figure>
And indeed, the image goes to the right, but the caption stays in the left.
To fix it, I moved the style="float: right;" property to the figure, which covers both the image and the caption:
<figure style="float: right;">
<img src="url" alt="alt text">
<figcaption>"caption text"</figcaption>
</figure>