EDIT: This is for thugslyf, Snookerman posted while I was posting!
Tables for layout?! Shame! 
Why is everything spaced out so much? (See attached) Is it supposed to be like that?
The problem may be this:
Code:
.productlist li
{
display: inline; <----
float: left;
margin-left: 15px;
margin-bottom: 15px;
}
Try putting display:block, and then a width, say, like this:
Code:
.productlist li
{
display:block;
width:150px;
float: left;
margin-left: 15px;
margin-bottom: 15px;
}
See if that does anything...
Hope that helps!
Bookmarks