如何更改Facebook评论文字颜色?

时间:2018-02-23 06:29:30

标签: html

enter image description here

我在FAQ页面上使用Facebook评论插件。但是,默认注释文本颜色不适合深色背景主题。如果你们能给我一些有价值的建议和评论如何调整,那就太好了。

配置代码

<div class="fb-comments" data-href="" data-width="100%" data-numposts="5" data-colorscheme="light"></div>

2 个答案:

答案 0 :(得分:1)

static Uri IntranetURL = new Uri(ConfigurationManager.AppSettings["LicensingIntranetDistributionPointUrl"]); static Uri ExtranetURL = new Uri(ConfigurationManager.AppSettings["LicensingExtranetDistributionPointUrl"]); static ConnectionInfo connectionInfo = new ConnectionInfo(ExtranetURL, IntranetURL); 替换为data-colorscheme="light"以解决您的问题。

https://developers.facebook.com/docs/plugins/comments/

未记录任何颜色自定义

答案 1 :(得分:0)

你可以只使用样式属性到<div>标签并给出你想要的颜色。我给了红色。的 style="color:red;"

<div style="color:red;" class="fb-comments" data-href="" data-width="100%" data-numposts="5" data-colorscheme="light">This is some text!</div>