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?