Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Set Hamburger menu to always visible Reply To: Set Hamburger menu to always visible

#263571
JeroenR
Participant

I think I would choose another setup myself, but a quick fix could be the following:

Change these lines in your stylesheet:


@media only screen and (min-width: 40.063em) { .menu-toggle { display: none; } .main-navigation { float: right; display: block; border-top-width: 0; } }

to these:


@media only screen and (min-width: 40.063em) { .menu-toggle { display: block; top: 30px; } .main-navigation { float: right; border-top-width: 0; } }

So class .menu-toggle is always visible, and class .main-navigation is hidden by default.