What do you mean by "correct"? Are you trying to get three products per row?
You have some conflicting property values which are not being applied anyway, and margins and padding which are causing your problems.
Code:
.centerBoxContentsProducts {
height:220px;
width:150px;
text-align:center;
width:95%;
background-attachment: scroll;
background-color: #FFFFFF;
background-image: url(/images/box_bg.gif);
background-repeat: no-repeat;
background-position: 50% 0%;
margin-top: 10px;
margin-right: 2px;
margin-bottom: 10px;
margin-left: 2px;
padding: 10px;
}
.listingDescription {
padding-top: 1.5em;
padding-right: 6em;
padding-bottom: .0em;
padding-left: 6em;
}
Change to
Code:
.centerBoxContentsProducts {
height:220px;
text-align:center;
background-attachment: scroll;
background-color: #FFFFFF;
background-image: url(/images/box_bg.gif);
background-repeat: no-repeat;
background-position: 50% 0%;
margin: 10px 0;/*(top&bottom right&left)*/
padding: 10px 0;/*(top&bottom right&left)*/
}
.listingDescription {
padding: 1.5em 1.6em 0 1.6em;/*(top right bottom left)*/
}