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.

How to set the height for a Facebook tab app.

I can see it is possible to set the height and width on a Facebook app.

But under settings it is only possible to set the width for a facebook tab app: Page Tab Width:

How do I set the height for a page tab(app)?

share|improve this question
I will try it thanks. – Rails beginner Jan 4 at 14:00

1 Answer

up vote 1 down vote accepted

You have to set a default size setSize(),
if you have dynamic height content, you can use setDoneLoading() and after page load you can run the setAutoGrow() inside the callback.

FB.Canvas.setSize({ width: 810, height: 950 });

FB.Canvas.setDoneLoading( function(response) {
    FB.Canvas.setAutoGrow();
});
share|improve this answer

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.