Topic-icon Send button cut off at bottom.

Active Subscriptions:

None
13 years 3 months ago #31429 by Snakers
My website is here

If you click send to post to facebook, you can not submit because the bottom is cut off. I read that this can be an overflow issue, which i searched for, and modified but did not help. This could be specific to my template I am using so id like to see if i can get some specific assistance.
Thank you
The topic has been locked.
Active Subscriptions:

None
13 years 3 months ago #31459 by Snakers
Seems like everyone else got a response today except for me. Is there a better way to get this resolved than a forum?
The topic has been locked.
Support Specialist
13 years 3 months ago #31467 by alzander
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
The topic has been locked.