I'm developing an app for Facebook pages and, as usual, I've stumbled upon a strange bug today. I know that tab width is supposed to be 520px, but for some reason this is not happening on these new pages which are using IFrame canvas instead of the old FBML.

Here is a screenshot documenting this bug: Facebook bug

As you can see the content is cropped (I used overflow: hidden; to hide the scrollbars) at a total width of 504px. Any idea about how to solve it?

link|improve this question

80% accept rate
Ehm, simply shrinking the Google logo? – WTP'-- Feb 20 '11 at 18:30
feedback

2 Answers

up vote 5 down vote accepted

Just use Firebug to better inspect this. It's indeed 520px:
enter image description here

AND I've just visited your page on Facebook, it seems that you didn't reset the styling for your page. try this:

body {
    margin: 0;
    overflow: hidden;
    padding: 0;
}

instead of just overflow: hidden;.

link|improve this answer
Thanks! That solved my problem. – Jack Duluoz Feb 21 '11 at 10:10
@Jack Duluoz: You are welcome! – ifaour Feb 21 '11 at 10:13
feedback

Actually you are correct. The width limit is less than 520px.

You have to use a script to solve this problem. Also the overflow:hidden trick is necessary in the html and body tags.

Facebook Rulz.

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.