Navbar hides page content in mobile display

Hi @dlmorey,

It’s due to this line @media (min-width: 980px) {.

If you intend to apply it on devices smaller than 980px instead of greater, then it should be max-width instead of min-width. Like @media (max-width: 980px) {

Thanks!

Bingo!

Thanks so much.

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.