2012年12月29日土曜日

facebook・「いいね!」ボタンを押した後に表示されるコメント欄が全部表示されてない。


「いいね!」ボタンを押した後に表示されるコメント欄が全部表示されてない。

style.cssのこの部分

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
max-width: 100%;
}

これを下記の様に修正

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
/* いいねボタンのコメント欄が見切れる問題の対応 */
max-width: none!important;
}

以上