Hi, in the following file:
http://www.collinswebb.plus.com/therapy/style.css
find the following rule:
.jcw-layout-wrapper {
margin-top: 20px;
margin-right: auto;
margin-left: auto;
margin-bottom: 0;
position: relative;
z-index: auto ! important;
}
and modify it like this:
.jcw-layout-wrapper {
margin-top: 20px;
margin-right: auto;
margin-left: auto;
margin-bottom: 0;
position: relative;
z-index: auto ! important;
clear: both;
}
This should fix the issue.
Cheers!