When I clicked on the link this morning I kept getting an .htpasswd login prompt. It seem to be gone now though.
In your vertical menu CSS there seems to be an extra comma;
.verticalmenu li, a:link, .verticalmenu a:visited, .verticalmenu a:hover {
should be;
.verticalmenu li a:link, .verticalmenu a:visited, .verticalmenu a:hover {
(the display:block part is throwing off the alignment in the boxcontent div - take the comma out and it fixes things)
Next, change the boxcontent div code to this;
Code:
<div id="boxcontent">
<p style="text-align:center;">
<a href="http://www.peppergoodrich.com/melt.html">
<img src="images/barbarycoast.jpg" style="height:309px; width:283px; border:0;">
</a>
</p>
<p style="text-align:center;">
<a href="http://www.peppergoodrich.com/barbary.html">
<img src="images/meltdown2.jpg" style="height:304px; width:279px; border:0;">
</a>
</p>
<p style="text-align:center;">
<a href="http://www.peppergoodrich.com/merry.html">
<img src="images/xmas.gif" style="height:301px; width:277px; border:0;">
</a>
</p>
</div>
Images should no longer overlap and still be aligned centrally.
One thing, I guess you added the extra white space on the right hand side of the book images to fix the alignment? You wont need it anymore so either crop that off the 3 images and change the width value accordingly or add a left-margin to push the images back towards the right of the screen. About 25px should do it - eg;
<img src="images/xmas.gif" style="height:301px; width:277px; border:0; margin-left:25px;">
Bookmarks