重新调整浏览器大小后,为什么此菜单项会消失?

时间:2017-11-07 21:31:13

标签: html css wordpress

网站:https://borealisproductions.ca/

当浏览器重新调整大小时,页面左侧的电话号码会消失,但页面右侧的导航菜单会响应。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这些是CSS文档中的envolved行:

@media screen and (max-width: 1200px) {
.phone-number-custom {
    display:none!important;
}

它修复了一个断点并删除了那个类,这就是它“消失”的原因。 您可以删除该规则,或将其修复到另一个断点上,例如768px:

@media screen and (max-width: 768px) {
.phone-number-custom {
    display:none!important;
}

无论如何,这取决于你的需求......