Sorry I didn't respond to you earlier. I actually looked at your issue earlier, but it's more difficult than most solutions for when the widgets are cut off. We try to get to all posts in order, but some are more difficult than others. Additionally, when it involves a template issue, which isn't directly related to JFBConnect, those aren't as high a priority as directly-JFBConnect issues. That doesn't mean you should be waiting days and days, but waiting 7 hours or so isn't unreasonable for any support request sometimes.
As to your problem, normally, the solution would be to remove the overflow:hidden statements that are on the containing div's of your content areas. However, on your site, that actually causes your content to go all wonky. The best solution I've found is the following CSS changes:
In /templates/prostock/css/template.css in the #zt-component section at line 566, remove the overflow:hidden statement.
In the same file, at line 529 in the #zt-mainbody-inner block, add padding-bottom:130px;, so it looks like:
#zt-mainbody-inner {
overflow: hidden;
padding-bottom: 130px;
}In that last one, I'd normally recommend removing the overflow:hidden statement, which does fix the issue. If you try though, you'll see the other problems that causes. I'm not sure if the padding will be a problem. If it is though, you may need to contact your template provider to determine a better solution to let the content overflow without re-arranging everything like it seems to do.
Thanks,
Alex