简体   繁体   English

WordPress移动菜单不起作用,标题文本跳

[英]Wordpress Mobile Menu not working and header text jumping

我一直在对该wordpress网站进行一些修复: http : //avphotobooth.com,并尝试使响应菜单正常工作以及在移动版本上修复标题文本,但这样做有问题-这是一个突出的主题,但可以由于它是旧版本,因此无法获得支持

As far as I can tell you have everything working except the mobile menu icon is showing on desktop? 据我所知,除了桌面上显示的移动菜单图标外,其他所有功能都可以正常工作吗? So just use CSS to hide it and display it on mobile only. 因此,只需使用CSS即可将其隐藏并仅在移动设备上显示。

#toggle-nav{
    display: none;
}
@media screen and (max-width: 990px) {
    #toggle-nav{
        display: block;
    }
}

Just modify the 990px to the width of the site you want the button to show again. 只需将990px​​修改为您希望按钮再次显示的站点的宽度即可。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM