Firefox is adding scrollbars to the canvas even with the body set to overflow:hidden and the execution of FB.Canvas.setAutoResize();. Every other browser hides the scrollbars. When I remove all content from the page the scrollbars persist.
|
|
This is a known issue with canvas apps and page tabs, and has annoyingly been around for quite a while. https://developers.facebook.com/bugs/309917422436936 Some people mention being able to use Have you definitely set the iframe auto resize option in the apps control panel too? |
||||
|
With the introduction of Facebook Timeline the way to remove scroll bars and control page margins has changed. First (and most importantly) your body padding and margins MUST all be set to zero. This ensures all browsers process your canvas settings off absolute zero. Depending on the 'Page Tab Width' (520px or 810px) option you set in your Apps/Page settings you will need to adjust the width in the following code. This block should be placed in the page Head:
Just below the Body tag add the following code:
Remember to change 'YOUR APP ID'. Also width: should equal either 520 or 810. Set height: slightly larger than you require to allow overflow. This solution has been tested in IE, FF, Safari and Chrome! |
|||
|
|
I added this to my css and it seemed to work:
If you already have padding added to the top of your body, you will likely need to add 20px to it. I assume it's because firefox measures the body height differently than other browsers. Tested in ff8, chrome16 and ie9 with no negative repercussions. |
|||
|
|
I had solved this problem that way:
It's works for me. I hope that help. |
|||
|
|
|
Forget about body and html margins (I mean set them to zero). like this:
and do this :
works in IE,FireFox and Chrome/Safari... Here is FB initialization code if you need it:
|
||||
|
|
