I've used lightbox but i have a problem.
That's normally lightbox structure:
<a href="images/image-1.jpg" rel="lightbox" title="my caption">image #1</a>
But my structure:
<a href="#" ><img src="images/product_1.jpg" rel="lightbox"width="220" height="208" /></a>
So, when add rel="lightbox"
after a href="#"
open pop-up but not show large image. When add in img src
lightbox effect don't working.
I don't change my html structure, how can i fix it?
What about:
<a href="images/image-1.jpg" rel="lightbox" title="my caption" >
<img src="images/product_1.jpg" width="220" height="208" />
</a>