How to make Facebook comments widget a fluid width?

at. picture at. · Sep 16, 2011 · Viewed 35.6k times · Source

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

Answer

AJ Savino picture AJ Savino · Apr 18, 2012

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;
}