Issue: if you post a few thumbnails next to each other, they may stagger down like steps.
This is not intuitive and hard to read, but it is an easy fix. When you have two or more pop-up images next to each other, as one set of tags ends, the other begins. The end of the first and beginning of the second are in yellow below.
<a href="http://www.ojaigarden.com/images/img_0957s1.shtml"
onclick="window.open ('http://www.ojaigarden.com/images/img_0957s1.shtml', 'popup', 'width=449, height=337, scrollbars=no, resizable=no, toolbar=no, directories=no, location=no, menubar=no, status=no, left=0, top=0');
return false"><img
src="http://www.ojaigarden.com/images/img_0957s-thumb.jpg" width="100"
height="75" align="left" hspace="5" vspace="5" border="1" alt=" " /></a>
<a
href="http://www.ojaigarden.com/images/IMG_0960s1.shtml"
onclick="window.open ('http://www.ojaigarden.com/images/IMG_0960s1.shtml', 'popup', 'width=449, height=337, scrollbars=no, resizable=no, toolbar=no, directories=no, location=no, menubar=no, status=no, left=0, top=0');
return false"><img
src="http://www.ojaigarden.com/images/IMG_0960s-thumb.jpg" width="100"
height="75" align="left" hspace="5" vspace="5" border="1" alt=" " /></a>
BUT, the way that HTML works is that if you have 1 or 7 or 1000 spaces between tags, that counts as one space. So a single space gets added between each sets of tags, and thus the formatting on the pictures displays poorly.
So simply remove the extra spaces between the tags, and voila:
<a href="http://www.ojaigarden.com/images/img_0957s1.shtml"
onclick="window.open ('http://www.ojaigarden.com/images/img_0957s1.shtml', 'popup', 'width=449, height=337, scrollbars=no, resizable=no, toolbar=no, directories=no, location=no, menubar=no, status=no, left=0, top=0');
return false"><img
src="http://www.ojaigarden.com/images/img_0957s-thumb.jpg" width="100"
height="75" align="left" hspace="5" vspace="5" border="1" alt=" "
/></a><a href="http://www.ojaigarden.com/images/IMG_0960s1.shtml"
onclick="window.open ('http://www.ojaigarden.com/images/IMG_0960s1.shtml', 'popup', 'width=449, height=337, scrollbars=no, resizable=no, toolbar=no, directories=no, location=no, menubar=no, status=no, left=0, top=0');
return false"><img
src="http://www.ojaigarden.com/images/IMG_0960s-thumb.jpg" width="100"
height="75" align="left" hspace="5" vspace="5" border="1" alt=" " /></a>