I have created a facebook apps. It works fine for me. But my problem is that always show vertical and horizontal scrollbar, when I use fluid for both width and height of my page from facebook settings. My page looks like this http://karen.webmascot.com/fb/fbone.jpg. What can I do now?

link|improve this question

have you try to set your canvas setting width as fixed, and height is settable ? – sue mk Dec 19 '11 at 10:44
feedback

2 Answers

up vote 2 down vote accepted

Set scroll=no and overflow:hidden to your body and use FB.Canvas.setAutoGrow() to remove the scrollbar.

<body scroll="no" style="overflow:hidden">
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function () {
    window.setTimeout(function () {
        FB.Canvas.setAutoGrow()
    }, 250)
};
(function () {
    var e = document.createElement('script');
    e.async = true;
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e)
}());
</script>
link|improve this answer
An empty scrollbar is always showing. – Pritom Dec 19 '11 at 13:05
Empty scroll bar always showing for mozilla firefox browser, not in IE. – Pritom Dec 20 '11 at 6:18
Try this one & lot of discussions how to fix the scrollbar. goo.gl/ENE0Z – Bob Dec 20 '11 at 17:27
1  
Thanks a lot very much. – Pritom Dec 21 '11 at 3:09
feedback

Try to use overflow:hidden in your body CSS style.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.