Display Image caption in Posts on Jekyll blogs

After moving this blog from WordPress to Jekyll, I have been trying to manually patch all the gaps that I found between Jekyll & WordPress. One of them is the support for displaying Image captions along with the the image in posts. It is quite easy to add support of Image caption on Jekyll powered blog yourself and we will see how in this post.

BMW Bike
Images with Caption

Unlike WordPress, there are many things that don’t come prepackaged with Jekyll. For a developer like me, it is actually a good thing as it gives me the opportunity to build it myself and make it the way I like it to be. For e.g. Share buttons for Jekyll. However, it can be taxing for others as basic things like adding a caption on the image in posts, which was pretty easy on WordPress, will now require you to add HTML code in your Jekyll post (along with markdown) to make it work.

Image Caption in Jekyll posts

To make it easier for everyone, I am sharing my working solution which will allow you to easily insert image in your posts on Jekyll and add a caption to it. Along with that, you can also specify alt text, add a link (URL) to it and specify a title for the link too.

Include file image.html for Jekyll

In order to add support of Image Captions, I have created a partial include file for Jekyll named image.html and placed it in my _includes folder. The content of this file is presented below

<!-- _includes/image.html -->
<div class="image-wrapper" >
    {% if include.url %}
    <a href="{{ include.url }}" title="{{ include.title }}" target="_blank">
    {% endif %}
        <img src="{{ site.url }}/{{ include.img }}" alt="{{ include.title }}"/>
    {% if include.url %}
    </a>
    {% endif %}
    {% if include.caption %}
        <p class="image-caption">{{ include.caption }}</p>
    {% endif %}
</div>

Note that, I am making use of Liquid tags to access parameters passed to this include file. The parameters that we are going to pass are as follows:

  • img: the path to image file e.g. “/images/myimage.jpg”
  • title: the title of the image which will be used for its alt text and as the link title (if any)
  • url: (optional) the url the image will point to
  • caption: (optional) the caption of the image which will be displayed below the image.

I have also added CSS classes in order to be able to style these Images with Captions. Find the CSS code used to style them below.

CSS style for Images with Captions

In order to make our caption stand out, we are going to use the following SCSS code which will change the color of our caption text and will also make the image as well as caption text centered.

.image-wrapper {
    text-align: center;

    .image-caption {
        color: $grey-color;
        margin-top: $spacing-unit / 3;
    }
}

Inserting images with caption in Jekyll posts

So, now that we have this include file and corresponding style defined in our CSS, here is how you can include an image with caption in your posts.

{% include image.html
            img="images/myimage.jpg"
            title="title for image"
            caption="caption for image" %}

Images with caption & linked to URL too

To link the image to a URL, simply specify the url parameter for the include file as shown below.

{% include image.html
            img="images/myimage.jpg"
            title="title for image"
            caption="caption for image"
            url="http://example.com" %}

Example of Image with Caption

I added an example at the begining of the post, here is another example of an image with caption text and a link too. Notice that alt text as well as title for the URL are also present in the image.

Color Pencils
Images with Caption & URL

Summary

While Markdown is great for writing posts in Jekyll, those of us moving from WordPress might find in-built support for a few things missing such as Caption on Images. However it is possible to create a partial include file for Jekyll which can be reused for inserting Images with Caption. In this post, I shared my way of adding caption to images on my blogs built with Jekyll.

Along with caption, the include file presented here, also ensures that proper “alt” tag and “title” tag get added to your images, which will be good for Search Engine Optimization (SEO) of the images in your posts. If you found this useful, you may want to read my other posts on Jekyll too.

8 thoughts on “Display Image caption in Posts on Jekyll blogs”

  1. Thanks a ton for this post. I just blindly followed everything you wrote, and so far, I’m very happy with the results!

    Reply
  2. Thanks! Works very well!

    I’ve added the parameters “width” and “height” to be able to resize the images. Changing the alignment with the “align” option of results in a correctly aligned image, but the caption stays in the middle of the site. Do you have any idea, how the CSS code has to be edited in order to align the caption correctly?

    Reply
    • Hi jd,

      As you say, caption stays in the middle of the site, does this mean your caption is at a fixed middle position in site even when you scroll? If that is true then you might have ‘display:fixed’ applied in CSS for your caption which needs to change to ‘display:block’.
      If not, then I am afraid, I don’t quite understand what problem you are encountering unless I see a screenshot and maybe the code behind it.

      Reply
  3. I am using Pixyll theme for Jekyll. Which file should I edit to add CSS code that you provided? Your tutorial does not explain which file has to be edited to add custom CSS. Thank you!

    Reply

Leave a Comment