我最近在我的博客上安装了Discus评论插件,目前为止效果不错。
我希望能够改变主页上评论数量的样式,但经过一些搜索后,我运气不太好。
如果你访问我的博客,http://scotthelme.co.uk, 无论是否启用JS,你都会明白我的意思。我想更改注释计数框的样式,使其与最初的样式相匹配。
有人能告诉我需要改变什么吗?
谢谢
更新
禁用JS时,我的注释计数如下(正确):
<a href="http://www.scotthelme.co.uk/wifi-insecurity-wpa/#comments" title="Comment on WiFi (in)Security – Even WPA can’t compensate for a weak password">
<span class="dsq-postid" rel="726 http://www.scotthelme.co.uk/?p=726">1</span></a>
启用JS后,我的评论计数如下所示:
<a href="http://www.scotthelme.co.uk/wifi-insecurity-wpa/#disqus_thread" title="Comment on WiFi (in)Security – Even WPA can’t compensate for a weak password" data-disqus-identifier="726 http://www.scotthelme.co.uk/?p=726">0 Comments</a>
我丢失了包装锚定标记内容的跨度,需要再次插入它。
最合适的回答,由SO网友:cybmeta 整理而成
主题中的注释计数包含在<span class="comments-link">...</span>
, 因此,您可以在CSS文件中设置CSS规则,如:
.comments-link {
//here your rules
}
对于将来的问题,请注意,关于纯CSS的问题,不特定于Wordpress,可能更适合其他网站,可能
stackoverflow.