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.

Take a look at the this link. Scroll down a bit and you should see a Facebook comments plugin with an embedded Google map right beneath it.

My problem is, there is a ton of white space between the bottom of the comments plugin and the top of the map. Firebug indicates the white space is at the bottom of the comments plugin (as opposed to the top of the map). However, I can't seem to find a way to eliminate it.

I've tried just using relative CSS positioning to move the map up 50 pixels, but then it sits on top of the comments if there happen to be any. Also, if the user has turned FB comments off, it screws the layout as well.

Any ideas on how to get rid of the excessive white space?

UPDATE: While the answers provided here pointed me in the right direction, it ended up being too much trouble. I simply put the Facebook comments beneath the Google map at the bottom of the page which masks the problem somewhat. Apparently this is a bug according to one of the commenters below, so we'll just have to wait for a fix.

EDIT: Been toying with these styles for a while, no luck. I can alter the height of the box initially based on Jason's suggestions, but anything I do screws up the layout (new comments appear BEHIND the map since the comment area stays the same height as its original height, instead of allowing Facebook to dynamically grow the height of its IFRAME element when a comment is added). Any other ideas?

EDIT #2: It seems that the root of the problem is that Facebook automatically assigns a height of 200px to the IFRAME containing the comments box. When comments are added, Facebook dynamically resizes thie IFRAME to the appropriate height. I'd be able to solve my problem if I could find a way to make that default 200px start at 145px. Not sure if this is possible or why Facebook would think that 200 (arbitrary?) was a good height to start at.

EDIT #3: I realize the white space is coming from the IFRAME that Facebook generates and that there's nothing I can do about that, specifically. I started a bounty on this question because:

1) I find it hard to believe that I'm the only person that has an issue with the way this displays.

2) It's possible it's due to the way I configured something?

3) There's some other workaround I'm not thinking of.

Hopefully the bounty will encourage some creative replies!

share|improve this question

5 Answers

up vote 2 down vote accepted
+50

Don't set the height to auto, set the overflow...

Set height:110px and overflow:auto on the Facebook iframe - then comments will expand the height of the iframe dynamically.

Pop these changes in your $().ready function - this works fine for me.

share|improve this answer
Actually there is a little lag in the resizing in Firefox 3.6.11 – earcam Jun 24 '11 at 19:40
Won't overflow:auto; simply cause scroll-bars to appear instead of expanding the iframe? – Sparky Jun 24 '11 at 19:51
2  
@earcam: You may be right and I really don't know which is why I asked the question. However, I do know from personal experience to never trust w3schools. See w3fools for more. – Sparky Jun 24 '11 at 20:50
1  
@Sparky672 +1 thanks for the link =) – earcam Jun 25 '11 at 0:10
1  
@Scott, this is a reported bug bugs.developers.facebook.net/show_bug.cgi?id=16836 I've voted on it and cross posted (if you can rally some more votes then they may sort it sooner). In previous comment re:Xpath&iFrames I missed the link for "as per discussion here" which was csschat.com/showthread.php?t=9282 – earcam Jun 27 '11 at 0:10
show 3 more comments

I had this problem on Mobile browsers. Facebook added this auto detect for mobile devices. It loads a different version of the plug-in that is full of bugs. Just set the mobile flag to false to force it to use the regular version that does not have bugs. This saved me. I hope it helps you.

share|improve this answer

There are several contributing factors:

  • .fbFeedbackContent has min-height: 165px
  • the loaded iframe has height: 200px
  • there is an empty span tag within the fb:comment tag

Addressing any or all of these should get you started. You may need to use !important to override some of the CSS.

share|improve this answer
What would I override the iframe height to in order to get it to be fluid though? I don't necessarily want to set a specific height. Setting height: 130px !important works well, but as soon as a comment is added, it overflows the box. – Scott Jun 21 '11 at 2:18
height: auto; – Jason McCreary Jun 21 '11 at 2:20
Tried this with no luck. It eliminates the white space, but then just moves the white space beneath the "Like" button and the comments box. .fbFeedbackContent { min-height:0 !important; } iframe.fb_ltr { height:auto !important; } – Scott Jun 21 '11 at 2:32
I am sure some combination of the above will work. If it moved it to another spot, firebug those styles and see why. – Jason McCreary Jun 21 '11 at 2:38

Turn off mobile parameter. For exemple:

<div class="fb-comments" data-href="http://example.com" data-width="470" data-num-posts="10"  mobile="false"></div>
share|improve this answer

I am using FbComments plugin for Wordpress and there you can set the customisation options. This solved the problem for me.

Where it asks Comment box style AND Whole comment box style enter the height you want. It should be 72px. So you enter height:72px; in the space provided. Don't forget the ;

share|improve this answer
1  
Thanks for the suggestion, however I am not using FbComments or Wordpress. – Scott Sep 13 '11 at 16:00

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.