我在FAQ页面上使用Facebook评论插件。但是,默认注释文本颜色不适合深色背景主题。如果你们能给我一些有价值的建议和评论如何调整,那就太好了。
配置代码
<div class="fb-comments" data-href="" data-width="100%" data-numposts="5" data-colorscheme="light"></div>
答案 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"
以解决您的问题。
答案 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>