Quote Originally Posted by DrByte View Post
All of your product cells are of varying heights, perhaps due to varying image sizes and varying lengths of product names.

Adding this to your stylesheet.css appears to resolve it by giving each cell consistent spacing, and therefore preventing the overlap problems:
Code:
.centerBoxContentsProducts { 
  height: 350px;
}
Cool! by adding the text align command that also solved my problem with my product not being center in the page

Thanks!