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.

This question is obsolete. See here for an updated version.


Is there a maximum width an iframe Facebook application can be?

share|improve this question

closed as too localized by Robert Harvey Jul 26 '11 at 21:09

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

up vote 7 down vote accepted

I just played with it and to the pixel 758 760 was the largest I could go with out a scroll bar.

Edit: As portman has pointed out I had forgotten about borders. Please upvote his answer.

share|improve this answer
6  
You need to set frameborder="0". Otherwise you'll have 1px of border on all sides. – Portman Nov 9 '09 at 16:30
Ah thank you, you're right. – Daniel Dec 11 '10 at 23:29
1  
I just double checked and it's 758 instead of the documented 760 pixels. I know what frameborder does. But I don't see how I can specify it since it's part of facebook.com not part of my application. – Erik Feb 16 '11 at 11:04
I imagine there should be a way to change it. I posted my answer ages ago but if I remember right I did try it out on my own. – Daniel Apr 10 '11 at 5:50

760 pixels

This line is here to achieve the minimum required characters in an answer.

share|improve this answer
3  
Can I upvote this more than once please, StackOverflow? :p – Akoi Meexx Mar 25 '11 at 13:16

Be careful when using 760px though, I have often found you actually get a few less than they promise. I usually shoot for 740px to ensure I don't get any scroll bars.

share|improve this answer

i am solved this problem by adding public css style in application page and get 760 px

<style>
* {
margin:0;
padding:0;
}
</style>
share|improve this answer
1  
A better way to achieve a similar solution without destroying elements' defaults would be a reset css sheet. – Daniel Apr 10 '11 at 5:46

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