fix
Please note: This website includes an accessibility system. Press Control-F11 to adjust the website to people with visual disabilities who are using a screen reader; Press Control-F10 to open an accessibility menu.
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