CSS更改未出现

时间:2019-04-25 21:25:29

标签: css

我正在尝试更改网站顶部的菜单和地址的颜色。但是颜色不会改变。

我已经在theme / css / style.css中找到了style.css文件。我在代码中对此进行了更改,并上传到了我的filezilla。但是似乎有些东西覆盖了我的代码。

出现的是

    .navbar-white .brand,
.navbar-white .brand:hover,
.navbar-white .brand:focus,
.navbar-white .brand-text,
.navbar-white .navbar-address,
.navbar-white .navbar-address .text-dark,
.navbar-white .social-list a{
  color: #fff; 
} 

应该是

.navbar-white .brand,
.navbar-white .brand:hover,
.navbar-white .brand:focus,
.navbar-white .brand-text,
.navbar-white .navbar-address,
.navbar-white .navbar-address .text-dark,
.navbar-white .social-list a{
  color: #000; 
}

我希望我能在首页上将它们全部变黑。所以我的背景不会溢出我的菜单按钮。

1 个答案:

答案 0 :(得分:2)

您的浏览器可能已将样式表保存在浏览器缓存中。尝试清空缓存。

通常,一个好习惯是让所有人都知道,您在嵌入对象中使用了<link rel="stylesheet" href="css/main.css?v=2">(注意v=2表示样式表版本)之类的语法来更新了样式表(其他访问者可能没有已清空其缓存仍可以获取旧样式表。

对于本地开发,我喜欢使用Chrome的 LiveReload 这样的插件,只要将更改保存到指定文件夹中的文件,该插件就会完全重新加载页面。