Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've tried several snippets of code I've found from various sources, including Facebook itself and stackoverflow, but none of them work to increase the default length of the custom tabs I created for a client. I've listed the methods I've tried below.

One variable I haven't been able to play with is the Canvas Height setting described on Facebook's FB.Canvas.setSize page. It is nowhere to be found on my App Dashboard. http://developers.facebook.com/docs/reference/javascript/FB.Canvas.setSize/

It says: "Note: this method is only enabled when Canvas Height is set to "Settable (Default: 800px)" in the App Dashboard."

And here are the various methods I've tried to resize.

<script type="text/javascript"> 
  window.fbAsyncInit = function() {
  FB.init({appId: '215615521792601', status: true, cookie: true, xfbml: true});

<!-- EACH OF THESE THREE LINES BELOW WAS TRIED ONE AT A TIME.-->
FB.Canvas.setAutoResize(true);
//  FB.Canvas.setAutoGrow(true);
// FB.Canvas.setSize({ width: 520, height: 1576 });
 };

And here is another method I found:

<!-- FACEBOOK TAB LENGTH FIX HEADER START -->
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script>
<!-- FACEBOOK TAB LENGTH FIX HEADER END -->

<!-- FACEBOOK TAB LENGTH FIX BODY START --> 
    <script type="text/javascript">
window.fbAsyncInit = function() {
FB.Canvas.setAutoResize( 100 );
}
// Do things that will sometimes call sizeChangeCallback()
function sizeChangeCallback() {
FB.Canvas.setSize({ width: 520, height: 2400 });
}
</script>    
<!-- FACEBOOK TAB LENGTH FIX BODY END --> 

Thanks for any and all help! I'm completely stumped and frustrated!

share|improve this question

1 Answer

up vote 0 down vote accepted

Canvas Height option is available in "App on Facebook" section under Basic Settings in App Dashboard.

share|improve this answer
Am I looking in the wrong place then? Here's a screenshot of my app's Basic Settings page. graphish.com/test/fb_problem.png – user1769230 Oct 24 '12 at 17:07
You are looking at right place. In your screenshot,below Page tab where you have filled you page details you have (Website with facebook login* below which you have Apps on facebook tab. Canvas height settings is inside that tab. – Vishwesh Shetty Oct 24 '12 at 17:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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