Hi Andre,
This issue is caused by your template.
For some reason, your template is giving fixed heights to the main body area.
For example:
<div id="midCol" class="zg-col zg-col-9 zen-push zen-push-3" style="height: 1258px;">
You can fix the problem by removing the fixed heights, for example, by adding this css in your template:
#midCol {
height: auto !important;
}