Closed
Description
Context
No response
Description
Right now, we can set
---
hide:
- navigation
- ...
---
on each page. But it would be great to be able to specify default hidden attributes globally.
You can do this with custom css, but it would be great to do it with just he config.
mkdocs.yaml
extra_css:
- docs/docs.css
docs/docs.css
@media only screen and (min-width: 76.25em) {
.md-sidebar {
display: none;
}
}
Related links
Use Cases
Specifically, I am looking to hide my navigation globally and and can't make anything work. I don't want to use those header blocks because they render weird in GitHub.
Visuals
No response
Before submitting
- I have read and followed the change request guidelines.
- I have verified that my idea is a change request and not a bug report.
- I have ensured that, to the best of my knowledge, my idea will benefit the entire community.
- I have included relevant links to the documentation, related issues, and discussions to underline the need for my idea.