I have several thumbnail images side by side in a dynamic text box. Each one of these thumbnails links to the full picture. In order to get the images to not overlap, I’m using the <hspace> tag. The problem is that although the images are moving horizontally, the links are also being moved. So the first image and link are aligned, but the second link is too far to the right, the third a bit farther to the right and so on. Here is my code from my .txt file:
<a href=“media/photoGallery/PGact2.jpg” target="_blank"><img src=“media/photoGallery/thumbnails/PGact2T.jpg” /></a>
<a href=“media/photoGallery/PGact1.jpg” target="_blank"><img src=“media/photoGallery/thumbnails/PGact1T.jpg” hspace=“61” /></a>
<a href=“media/photoGallery/PGact4.jpg” target="_blank"><img src=“media/photoGallery/thumbnails/PGact4T.jpg” hspace=“114” /></a>
So there is about 100 pixels or so of clickable whitespace after thumbnail 3, and when you click over the 3rd image you get the full picture of thumbnail 2. Any ideas?