我的切换菜单栏未显示在移动视图中。我的网站是http://gtcgroups.com/
。当我减小窗口大小时,菜单不显示。如何解决。我目前正在使用WPtouch插件,但未显示网站徽标,这就是为什么我想通过自定义代码进行切换菜单的原因。我尝试了其他代码,但无法正常工作
header .menu .nav {
display: none !important;
}
header .menu.active .nav {
display: block !important;
}
答案 0 :(得分:0)
这是因为您在custom.css中编写了CSS
.header-wrap {
height: 30px;
width: 1200px;
margin-top: 0px;
}
replace it by
.header-wrap {
height: 30px;
width: 1200px;
margin-top: 0px;
max-with:100%
}