If I read it correctly and you want the side bar area extended down to the bottom of the page even with the body content bottom then try to change this around in your style.css …
.contentWrapper {
min-height: 350px;
padding: 20px;
}
Try something like these:
.contentWrapper {
height: 100%;
padding: 20px;
}
OR
.contentWrapper {
min-height: 100%;
padding: 20px;
}
Might work…
Good luck and if it was something else then sorry for the post.
Dave