如何在我网站上的disqus中更改underline color for tabs?
我试图通过自己重写disqus规则:
.nav-primary>ul>li.active>a:after {
content: " ";
display: block;
right: 0;
height: 2px;
background: #000 !important;
position: absolute;
bottom: -2px;
left: 0;
}
.active .publisher-nav-color::after {
background: #000 !important;
}
我的规则没有效果(因为iframe,假设)
答案 0 :(得分:1)
无法更改活动标签下划线颜色。 Disqus使用它所在页面的默认链接颜色。如果它使用的颜色不同于链接颜色,请确保您的主要< a>颜色样式可以通过Disqus继承。
请参阅“链接颜色”部分:https://help.disqus.com/customer/portal/articles/545277-disqus-appearance-tweaks
答案 1 :(得分:0)
a:after
- > a::after
.nav-primary>ul>li.active>a:after {background: #000 !important;}
应该是
.nav-primary > ul > li.active > a::after {background: #000 !important;}
答案 2 :(得分:0)
您回答了自己的问题:样式无法应用于iframe,因为它们是不同的来源。您可能需要查看Disqus's Appearance Tweaking guide,其中显示了如何进行css调整。