Facebook canvas horizontal scroll bar issue

1.2k Views Asked by At

My facebook apps page canvas width 760px. iFrame page body width 520px, overflow:hidden.

Still showing horizontal scroll only in firefox 9, 10. IE and Chrome looks fine.

enter image description here

Is there any solution of this issue?

1

There are 1 best solutions below

1
On

You should review your canvas settings for your application through the developers application.

enter image description here

As you can see there are two settings for the canvas width. When you use the fluid setting for the width, there is no "limit" to the width - your application can take up as much space as the users screen can give. This of course excludes the reserved space for the sidebar with the ticker and the advertisements.
The fixed setting is self explanatory.

Another option would be to use the Facebook JavaScript SDK and the FB.Canvas.setSize() method. The syntax is very straight forward :

FB.Canvas.setSize({ width: 640, height: 480 });

Happy coding!