I hope that I have posted this in the correct section.
I would like to display all images for a single product.
So far I have made the static HTML page which has A lightbox and now I want to build this into my theme.
This is the static HTML
<div class="col colA"> <div class="gallery"> <div class="preview loading"> <!-- this is the first featured image --> <img src="images/shop/cube-furniture/featureed.jpg" width="265" height="265" alt="" /> <!-- When clicked it brings up lightbox of all the image full sizes --> <a href="#enlarges" class="enlarge"><span>Enlarge</span></a> </div> <ul class="thumbs"> <li class="on"> <!-- this is the first/featured image when selected it replaces the featured image above --> <a href="images/shop/cube-furniture/first-thumb.jpg"><img src="images/shop/cube-furniture/first-medium.jpg" width="57" height="57" alt="" /></a> <!-- This is the url of the full size image for the lightbox. --> <a href="images/shop/cube-furniture/first-full-size.jpg" class="enlarge" rel="gallery1"><span>Enlarge</span></a> </li> <li> <a href="images/shop/cube-furniture/second-thumb.jpg"><img src="images/shop/cube-furniture/second-medium.jpg" width="57" height="57" alt="" /></a> <a href="images/shop/cube-furniture/second-full-size.jpg" class="enlarge" rel="gallery1"><span>Enlarge</span></a> </li> <li> <a href="images/shop/cube-furniture/third-thumb.jpg"><img src="images/shop/cube-furniture/third-medium.jpg" width="57" height="57" alt="" /></a> <a href="images/shop/cube-furniture/third-full-size.jpg" class="enlarge" rel="gallery1"><span>Enlarge</span></a> </li> <li> <a href="images/shop/cube-furniture/fourth-thumb.jpg"><img src="images/shop/cube-furniture/fourth-medium.jpg" width="57" height="57" alt="" /></a> <a href="images/shop/cube-furniture/fourth-full-size.jpg" class="enlarge" rel="gallery1"><span>Enlarge</span></a> </li> <li> <a href="images/shop/cube-furniture/fith-thumb.jpg"><img src="images/shop/cube-furniture/fith-medium.jpg" width="57" height="57" alt="" /></a> <a href="images/shop/cube-furniture/fith-full-size.jpg" class="enlarge" rel="gallery1"><span>Enlarge</span></a> </li> </ul> </div> </div>
I have figured out how to display a single image but to diplay all the images is really doing my head in.
Any help or links would be great!!
Thanks in advance.

Help













