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'm trying to figure out what CSS I must change to fix this problem: If you visit my site http://www.derekbeck.com/1775/ and click the topmost Facebook like or send, the popup that comes up is cut off and so one cannot see part of it. I want the popup to appear in the normal facebook default width, whatever that is, probably something like 300px or so.

Thanks, Derek

share|improve this question

2 Answers

up vote 4 down vote accepted

Change this iframe.fb_ltr at line 557 of a css file, it's 180px.

iframe.fb_ltr {
    width: 180px !important;
}
share|improve this answer
Awesome, that was it! Thanks! – Derek W Beck Feb 6 '12 at 19:33
You are Welcome ! – Sheikh Heera Feb 6 '12 at 19:38

Make sure that when you load FB JavaScript it has APP ID!

For example //connect.facebook.net/en_US/all.js#xfbml=1&appId=77777777777

If you will not have appId at the end it won't load scripts that expand comment box.

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.