As far as I remember you have a box on the page which has the title 'Customers who purchased this also purchased this'
That is the box that I am referring to, on the page. ( I was calling it 'customers who' because I could not be bothered to type the whole thing )
It seemed that this box was overlapping some of the other stuff on the page. You need to move it down so it does not overlap the other stuff.
If that is right (as i say I had about two seconds ) you need to either:
- Edit the file tpl_product_info_display.php file and put a <br class="clearBoth" /> just below the add to cart box of code. (I think that that was the last one that was overlapping in my glimpse)
or
- Edit the stylesheet.css file and add (or create) a rule for the <div> that surrounds you 'Customers who purchased this also purchased this' box. I can't tell you what that rule should be because I only have two seconds to look at your page and I do not use the 'Customers who purchased this also purchased this' box on my site. A work-around that I can offer is to add the following to your stylesheet.
Find where it says: (yours may be slightly different, I don't know, two seconds isn't long enough to look at your stylesheets )
.centerBoxWrapper {
border: 1px solid #9a9a9a;
height: 1%;
margin: 1.1em 0;
}
and change it to:
.centerBoxWrapper {
clear:both;
border: 1px solid #9a9a9a;
height: 1%;
margin: 1.1em 0;
}
Not ideal but it may solve your problem.