Widget text color change

时间:2016-05-14 作者:DLMike

你好我有这个site 在页脚部分,有一个带有灰色文本的最近帖子小部件。我希望将其更改为白色,我尝试在主题子对象中添加一些自定义css代码,但没有成功。

1 个回复
最合适的回答,由SO网友:Usce 整理而成

此CSS将使您的灰色文本成为您想要的其他文本:

.widget_posts_wrap .latest-posts .col-md-12 a span {color:#your-hex-code !Important;}
这是用于此小部件中的字幕,其中包含最新帖子。

这是标题:

.widget_posts_wrap .latest-posts .col-md-12 h3 a {color: #your-hex-code !important;}
也只需注意更改#your-hex-code 带有实际十六进制代码的零件。

我希望这有帮助。