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!

link|improve this question

feedback

4 Answers

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.

link|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
feedback

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.

link|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? – Sparky672 Jun 24 '11 at 19:51
1  
@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. – Sparky672 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 2 more comments
feedback

Still no solution to this? The jQuery patch doesn't work and the link in question above still shows white space. Its been 8 months, have there been any other solutions?

link|improve this answer
Actually the white space you saw may have been a bug that you just happened to see the few minutes it made it to production. But no, I still haven't found a solution to this. I just moved the Facebook comments to the bottom of the page so that any white space beneath it isn't really noticeable. However, it's still there. – Scott May 16 at 16:13
feedback

I am using FbComments plugin for Wordpress and 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 ;

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

Your Answer

 
or
required, but never shown

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