← Back to Documentation

Previous Tutorial

How to add an image gallery

You created a simple gallery in the last tutorial by adding this:

![The Apartment Pixel Art](/media/images/apt-pixel-art.png)
![Old plane in a hangar](/media/images/old-plain.jpg)
![Old barn](/media/images/old-barn.jpg)
  1. In the editor, select the 3 images you added and click the GALLERY button.
  2. Select Display as carousel?
  3. Click INSERT
  4. This will wrap the simple gallery in a code block like this:
        ```gallery
        ![The Apartment Pixel Art](/media/images/apt-pixel-art.png)
        ![Old plane in a hangar](/media/images/old-plain.jpg)
        ![Old barn](/media/images/old-barn.jpg)
        slideshow: true
        ```
        The above is an example, you'll upload your own images.
  5. Check the preview and you’ll see your gallery is now a carousel/slideshow.

You now know how to create galleries. Galleries also allow you to change sizing and layout, as well as add captions. Learn all about Galleries here: Galleries

Next tutorial