【问题标题】:Where to edit footer color in Wordpress Flash theme?在 Wordpress Flash 主题中在哪里编辑页脚颜色?
【发布时间】:2019-05-20 02:22:52
【问题描述】:

目的是更改我的 Wordpress 网站页脚中文本的颜色。在页脚你可以看到文本的颜色是黑色的,不可见。

想知道您在哪里插入以下代码以在 CSS 中编辑 FLASH 主题以更改页脚的文本颜色?

好像不能发图片,所以图片的链接是here

在我的Computer Repairs 网站上,我尝试添加到 style.css,但似乎没有任何改变

.site-footer {
    color: #fff;
}

原以为文本是白色的,但在添加上面的代码时它仍然显示为深色。也许我在错误的部分添加了

【问题讨论】:

    标签: php html css wordpress


    【解决方案1】:

    尝试将 !important 添加到 CSS 值的末尾以覆盖原始样式。 您可以通过管理界面点击“自定义”,然后点击“附加 CSS”。

    【讨论】:

    • 哇,它有效,谢谢 .site-footer { color: #fff !important; }
    【解决方案2】:

    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.

    Virtual Credit Card

    【讨论】:

      猜你喜欢
      • 2019-03-10
      • 2021-09-18
      • 2014-09-12
      • 2011-04-08
      • 2019-05-20
      • 2016-11-30
      • 1970-01-01
      • 2017-06-23
      • 1970-01-01
      相关资源
      最近更新 更多