Topic: Images with Captions

I am wondering if anyone has been able to make it easy for users of SimpleCMS to add photos with a captions? Maybe kind of like Wordpress does? Is there an option for this I have missed? Any easy solutions so when a client adds a photo (via SimpleCMS) they can also include a caption to go underneath it? Thanks in advance!

Re: Images with Captions

Hi Jake, we could add a feature to do this. Here's a quick scenario.

Imagine you already have this HTML:

<div class="image-with-caption">
     <img src="/images/example.jpg" class="edit" />
</div>

And you enable the new feature in SimpleCMS and edit the image and give it a caption. Then you would have HTML like this:

<div class="image-with-caption">
     <img src="/images/example.jpg" alt="This is a caption" class="edit" />
     <span>This is a caption</span>
</div>

Is that the kind of feature you would like?