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.

I'm trying to apply CSS to the Facebook Comments plugin in order to match my website design without success.

/**** Facebook comments ****/
.fbFeedbackContent .fbFeedbackContentHeader {
    border-color: #101010 !important;
    border-width: 1px 0 0 0 !important;
}
.fbFeedbackContent.fbDarkWidget .composer {
    background-color: #101010 !important;
    border-color: black !important;
}
.transparent_widget .fbDarkWidget .fbConnectWidgetFooter {
    display: none !important;
    visibility: hidden !important;
}
.fbFeedbackContent.fbDarkWidget .fbFeedbackTypeahead, .fbFeedbackContent.fbDarkWidget .fbFeedbackTypeahead .wrap {
    border-color: #121212 !important;
    border-top-color: #121212 !important;
    border-right-color: #121212 !important;
    border-bottom-color: #121212 !important;
    border-left-color: #121212 !important;
}
fbcomments,.fb_iframe_widget,.fb_iframe_widget[style],.fb_iframe_widget iframe[style],.fbcomments iframe[style],.fb_iframe_widget span {
    width: 100% !important;
}

In the HTML

<div class="fb-comments" data-href="http://www.url.com" data-num-posts="4" data-colorscheme="dark" css="http://www.url.com/style.less?003"></div>

Only the last CSS width property works. Any idea?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.