Hi,
1. The problem comes from the line:
margin-left: 2.12765957447%;
in the CSS:
.row-fluid [class*="span"] {
display: block;
width: 100%;
min-height: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
float: left;
margin-left: 2.12765957447%;
}
in the file
collectormotors.com/templates/lt_salon_car/css/legacy.css
of your template. Remove it and it will display properly.
2.
The problem of the description on your product page comes from the CSS of your template.
It uses that CSS:
#hikashop_product_bottom_part {
position: absolute;
width: 50%;
top: 25%;
right: 0;
}
but instead, it should have that CSS:
#hikashop_product_bottom_part {
float: right;
clear: none;
width: 50%;
margin-top: -230px;
}
in the file
collectormotors.com/templates/lt_salon_car/css/default.css