Replies: 2 comments
-
Oh, I see when the screen is quite wide the menu button does what I want, i.e. it disappears. There must be a media query behind this I'll see if I can switch it off easily |
Beta Was this translation helpful? Give feedback.
0 replies
-
For others interested add this to your extra.css: @media screen {
.md-header__button.md-logo {
display: block;
}
.md-header__button.md-icon[for=__drawer] {
display: none
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My site is super simple, just a home page with a massive grid of articles/posts and a search bar.
My navigation bar only contains "Home" (accessible via the menu - burger button). So, it's a bit sad and I'd like to remove it and default to just going to the homepage if the user clicks on the page title on the top left.
Beta Was this translation helpful? Give feedback.
All reactions