目的是在Wordpress网站的页脚中更改文本的颜色。在页脚处您可以看到文本的颜色为黑色且不可见。
想知道您将下面的代码插入CSS的FLASH主题以更改页脚的文本颜色吗?
似乎无法发布图片,因此图片的链接为here
在我的Computer Repairs网站上,我尝试将addinto插入style.css,但似乎没有任何改变
.site-footer {
color: #fff;
}
原本希望文本是白色的,但是在添加上面的代码时,它仍然显示为深色。也许我在错误的部分中添加了
答案 0 :(得分:0)
尝试在CSS值的末尾添加!important以覆盖原始样式。 然后,您可以通过管理界面点击“自定义”,然后点击“其他CSS”。
答案 1 :(得分:0)
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.site-footer {
background-color: #fff;
color: #000;
}
.site-footer a {
color: #000;
}
Hope this will helps you.
Thanks.