hi,
i have looked over you code and found the following problem...
Code:
<div class="item">
<h3>
Clingy Thingy Wine Labels $7.95
</h3>
<h4> <!-- H4 start tag in a different div tag --->
<div class="tnail">
<a href="images/Clingythingy.jpg"><img src="images/Clingythingy_thumbnail.png" width="139" height="95" alt="clingy thing" /></a>
</div>
<div class="description">
<p>
With ClingyThingy Labels you can forget about memorizing which wine is which.
These little labels help you match what is in your glass to the bottle from whence it came.
So the next time you host a wine-tasting party or event, try this uniquely stylish way to adorn your glass.
Simply apply these labels to any clean, dry surface and remove before washing. They won't leave any sticky residue!</p>
</h4> <!-- H4 end tag in a different div tag --->
</div>
the start H4 tag is in a different Div tag the the closing tag this could be causing your problem. if you remove them like this...
Code:
<div class="item">
<h3>
Clingy Thingy Wine Labels $7.95
</h3>
<div class="tnail">
<a href="images/Clingythingy.jpg"><img src="images/Clingythingy_thumbnail.png" width="139" height="95" alt="clingy thing" /></a>
</div>
<div class="description">
<p>
With ClingyThingy Labels you can forget about memorizing which wine is which.
These little labels help you match what is in your glass to the bottle from whence it came.
So the next time you host a wine-tasting party or event, try this uniquely stylish way to adorn your glass.
Simply apply these labels to any clean, dry surface and remove before washing. They won't leave any sticky residue!</p>
</div>
then you shouldn't have that problem any more.
i hope this helps...