Thursday, May 03, 2012

Joomla Lightbox Gallery Use

If you don't know HTML, you can use 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>

No comments: