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.

So, facebooks somehow adds a 1px border to your appplication when using an iFrame.

Is there any way to get remove this?

I checked the source code, and it has frameborder="0"

My .php also contains:

html, body, iframe, div {
        border: 0px;
        margin: 0px;
        padding: 0px;
        }

what to do?

(or do I just have to live with only having 748 px?)

share|improve this question

2 Answers

up vote 0 down vote accepted

I found out it was because I was using some old setting for embedding my app. This setting is no longer available, so this is of no use anymore!

share|improve this answer

anyway, the facebook frame code has a bug, it should use frameBorder="0" instead of frameborder (note the capital B, needed for it to work in ie7 and below)

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.