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...

link|improve this question

70% accept rate
feedback

2 Answers

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;}
link|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 at 0:45
To ensure this CSS works the width (data-width attribute) must not be specified. – Dean Taylor Mar 14 at 17:12
Worked without a glitch. – Bradley Apr 2 at 22:08
feedback

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;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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