Everything is correct, but I see scroll , because your footer received several non-responsive codes.
on this page:
http://melmencarelli.com/about/
first add box-sizing: border-box; in #footer-container and set width: 100% as follows:
#footer-container { width: 100%; margin: 0 auto; padding: 30px; box-sizing: border-box; }
then set width: 100% for .footer-info , for example:
.footer-info { float: left; width: 100%; margin-bottom: 25px; }
on this page:
http://melmencarelli.com/
Follow the instructions above, then set width: 100% to:
@media only screen and (max-width: 1023px) and (min-width: 0px) @media only screen and (max-width: 1023px) and (min-width: 0px) @media only screen and (max-width: 500px) and (min-width: 0px) html input[type="button"] { font-size: 14px; padding: 20px 20px; width: 100%; }
I also see this:
<div class="home-button"> <a href="http://melmencarelli.com/mentoring/"> <input type="button" value="HOW WE WORK TOGETHER"> </a> </div>
I recommend you use this:
<div class="home-button"> <a href="http://melmencarelli.com/mentoring/"> <button>HOW WE WORK TOGETHER</button> </a> </div>
Ok, everything looks good!
source share