Looks like its just a question of changing your markup - change this;
Code:
<div id="box-6" class="box">
<a href="http://terrybraunstein.com/portfolio/">
<img id="image-6" src="images/380px-wide_Public-Art.jpg" longdesc="Assemblages on Portfolio page." alt="Assemblages on Portfolio page." width="380" height="376"/>
</a>
<span class="caption scale-caption">
<h3>Assemblages</h3><a href="http://terrybraunstein.com/portfolio/">
<p>Click to vew Assemblages on the Portfolio page.</p>
</span>
</div>
To this;
Code:
<div id="box-6" class="box">
<a href="http://terrybraunstein.com/portfolio/">
<img id="image-6" src="images/380px-wide_Public-Art.jpg" longdesc="Assemblages on Portfolio page." alt="Assemblages on Portfolio page." width="380" height="376"/>
<span class="caption scale-caption">
<h3>Assemblages</h3>
<p>Click to vew Assemblages on the Portfolio page.</p>
</span>
</a>
</div>
And remove the unclosed anchor tag from the caption (grey)
Bookmarks