Question

I have a problem with this so the page is less than 900 px does not hide nav ul li. Code: http://codepen.io/anon/pen/qExAG/ Please help. Thanks

Was it helpful?

Solution

@media (max-width: 900px) {
  #menu {display: none;}
}

Do not put ; after px for media queries (line 184 in your CSS code).

@media (max-width: 900px;) //not works
@media (max-width: 900px) //works

DEMO: http://codepen.io/anon/pen/wlpIj/

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top