Html 移动设备上的导航图像

Html 移动设备上的导航图像,html,css,wordpress,navbar,Html,Css,Wordpress,Navbar,当我在手机上查看网站时,我可以看到导航栏图像,但如果我在手机上查看网站,我就再也看不到导航栏图像了。这是CSS。 任何帮助都将不胜感激。 背景:url(“/img/nav bar/group35.png”); `.移动导航标志{ font-size: 35px; height: 50px; width: 123px; color: white; text-decoration: none; position: fixed; z-index: 1000; left: 19px; top: 9px;

当我在手机上查看网站时,我可以看到导航栏图像,但如果我在手机上查看网站,我就再也看不到导航栏图像了。这是CSS。 任何帮助都将不胜感激。 背景:url(“/img/nav bar/group35.png”); `.移动导航标志{

font-size: 35px;
height: 50px;
width: 123px;
color: white;
text-decoration: none;
position: fixed;
z-index: 1000;
left: 19px;
top: 9px;
cursor: pointer;
background-size: contain;
cursor: pointer;

}`

这是因为有一个媒体查询隐藏了导航,使其便于移动:

当屏幕达到1000px时,导航条折叠

@media only screen and (max-width: 1000px)
style.css?ver=1.0:1457
.nav-bar {
    display: none;
}

这是一个特性,不是bug。您使用的模板有一个移动菜单,当屏幕宽度低于1000px时会切换到该菜单。你点击小堆栈图标,它就会弹出菜单。

我发现我的问题是缓存问题。我将图像更改为.svg。但是chrome正在缓存不再存在的旧图像。

它在哪里?再次编辑它。我无法添加背景:
url(“/img/nav bar/group35.png”)