响应式菜单错误

时间:2013-08-25 14:52:09

标签: html css

您好,当我去查看我的网站时,我的菜单的移动视图仍在显示。我希望它恢复正常。在768px之后;

我已经看过每个可以找出原因的地方。

http://codepen.io/mwbcomputers/pen/jvpcq

1 个答案:

答案 0 :(得分:0)

您在display: none;

的媒体查询中有1024
@media only screen and (max-width: 1024px) {
#container {
width: 90%;
margin-left: auto;
margin-right: auto;
}

.nav {  
display: none;
}

// more css

从媒体查询中删除以下代码

.nav {  
display: none;
}