How to show small thumbnail images and link them to larger images
The html code to display a thumbnailed image is as follows
<a href="url-for-big-image" target="_blank"><img src="url-for-small-image" border=0 alt="Click for larger image"></a>
i.e.  <a href="http://www.ukauctionhelp.co.uk/items/i14.jpg" target="_blank"><img src="http://www.ukauctionhelp.co.uk/items/i14t.jpg" border=0
alt="Click for larger image"></a> For this to work you will need to save 2 copies of your image on your Image Host / web site (the full size image & the thumbnail). If you are unable to produce the 2 different size images, the same effect can be
duplicated by specifying the size of the thumbnail image in the html (with the width tag) as follows  <a href="http://www.ukauctionhelp.co.uk/items/i05.jpg" target="_blank"><img src="http://www.ukauctionhelp.co.uk/items/i05.jpg" width=100 border=0
alt="Click for larger image"></a> (Using just a width, or height, tag like this maintains the images aspect ratio automatically)
|