The overlapping div with a class:
.eStore-product {
height:180px;
padding:5px;
clear:both;
}
I thought by adding clear:both; that this could solve the problem.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First of all, your iframe should not be placed within a p tag; iframes should go by themselves. Secondly, your
.eStore-producthas a height of 180px which is causing the problem. Either increasing that height or adding amargin-bottom: 100px;would solve the problem.Unfortunately this solution is more a hack than anything. I feel you’ve got a bigger problem than just this one line. Try fixing the 8 errors you have on the page and you mind find yourself having to fix less of these bizarre problems.