The background for the product is not centered in the product space. Your stylesheet.css has this:
Code:
/* Product list page */
.centerBoxContentsProducts {
background-image:url(../images/product_cell_1.jpg);
padding-bottom: 1.5em;
padding-top: 1.5em;
margin-right: -0.06em;
margin-left: -0.06em;
background-repeat: no-repeat;
padding-left: 0.1em;
padding-right: 0.1em;
background-attachment: scroll;
background-position: 0px 0px;
}
Change the
background-position: 0px 0px;
to
background-position: top center;