Thanks for the suggestions--they work great in both of my html editors. However, once the page in question is uploaded to the web site it looks as bad or worse than it did before.
The html for one image is:
Code:
<div class="img">
<a target="_blank" href="#">
<img src="images/#.png" alt="Contact Precautions" width="110" height="134" /></a>
<div class="desc">#</div>
</div>
Here's the CSS
Code:
div.gallery
{width: 100%;
border: 2px solid #gggggg;
float: left;
}
div.img
{
margin: 2px;
height: auto;
width: auto;
float: left;
text-align: center;
}
div.img img
{
display: inline;
margin: 3px;
border: 1px solid #ffffff;
}
div.img a:hover img {border: 1px solid #0000ff;}
div.desc
{
text-align: center;
font-weight: normal;
width: 120px;
margin: 2px;
}
Bookmarks