Avatar
JacobIMH
Hello, and thank you for your question. Taking a look at your site in Google Chrome's development tools, it would appear that this CSS rule is causing the lines on the right side to intersect your product image on the left: /catalog/view/theme/default/stylesheet/stylesheet.css on line 1024
.product-info > .left + .right {
        margin-left: 265px;
}
It looks like you'd want to change that to:
.product-info > .left + .right {
        margin-left: 428px;
}
Please let us know if you had any further questions at all. - Jacob