Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to make Facebook's comments widget a fluid width? Their documentation shows a width field for the fb:comments xfbml or iframe which is specified as:

  • width - the width of the plugin in pixels. Minimum recommended width: 400px.

So maybe it's not possible...

share|improve this question

4 Answers

up vote 23 down vote accepted

I found a solution using css. Inspiration came from this article http://css-tricks.com/2708-override-inline-styles-with-css/

.fb-comments, .fb-comments iframe[style] {width: 100% !important;}
share|improve this answer
1  
Beautiful! Worked perfectly! @at. You should seriously accept this answer. =) – Nathan Arthur Nov 9 '11 at 0:07
1  
Awesome. Thanks! – Ahrengot Feb 1 '12 at 0:45
1  
To ensure this CSS works the width (data-width attribute) must not be specified. – Dean Taylor Mar 14 '12 at 17:12
Worked without a glitch. – Bradley Apr 2 '12 at 22:08
What about the mobile comments. The CSS works fine on desktops, but not in iPhone or mobiles where Facebook automatically switches back to mobile comments – Jorre Jun 12 '12 at 12:48
show 2 more comments

Alan your solution was working however it looks like facebook updated their plugin and broke the style. I got it working again using the universal selector:

.fb-comments, .fb-comments * {
    width:100% !important;
}
share|improve this answer
this one worked for me, thanks AJ! – Francois Dec 4 '12 at 17:00
Works sweetly, thank you so much! – azure_ardee Mar 27 at 12:50
This one worked for me, the chosen answer on this question did not. – TK123 Apr 11 at 15:46

Probably next change from FB and this time this works better:


.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]  {width: 100% !important;}
share|improve this answer
3  
We're the 22nd of february 2013 and this is the only one that works with the current version of the fb:comments. – Mathijs Delva Feb 22 at 9:02
This still works as of 29th of march 2013. – Ben Mar 29 at 10:44

I generally want to avoid using the universal selector for better performance. You should be able to get the same result with

.fb-comments, .fb-comments span, .fb-comments iframe {width: 100% !important;}

Could probably be improved upon more if you check the facebook selectors...

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.