您好,我想知道如何在mobile中隐藏/禁用topbar(黑色的那个)?以下是指向我的网站的链接:https://www.cyrcl.eu我正在使用wpbakery with Kudos主题。
如何禁用手机上的顶栏?
1 个回复
最合适的回答,由SO网友:miguelcalderons 整理而成
你可以用CSS来做。
@media screen and (max-width: 600px) {
.qodef-top-bar {
display: none;
}
}