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.
Is there any solution of this issue?
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.
Is there any solution of this issue?
You should review your canvas settings for your application through the developers application.
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!