All Joomla templates developed by HotThemes are integrated with Lightbox script. Lightbox allows you to include simple galleries in your content pages. We will explain here how to use this feature on your site. You can use Lightbox for single images (clicking on the small image opens a larger image) or for a series of images (slide show).

Multiple Images Lightbox

If you don't know HTML, you can use the built-in Joomla editor. Here's what you need to do to make a mini gallery, using Joomla editor:

  1. Create a new paragraph (or div) and assign id="gallery" to it.
  2. Insert thumbnail image(s) inside this paragraph (or div).
  3. Link each thumbnail image with full-size image.

HTML view should look close to this example:

<p id="gallery">
<a href="images/stories/sample1.jpg" title="Step 2"><img src="images/stories/sample_small1.jpg" border="0" width="136" height="100" /></a>
<a href="images/stories/sample2.jpg" title="Step 3"><img src="images/stories/sample_small2.jpg" border="0" width="120" height="100" /></a>
</p>