It is possible hide navigation for previous/next section/page? #3489
-
Hello, thank you for your work, I working on documentation portal, and your web generator template is great. I have little problem with your navigation for previous/next section or page ... it is possible hide it? I want completelly hide/off this feature. I do not know if name "section" is correct, I mean navigation at down of page where you can go to next section or page, or back. for example here in your documentation https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/ thank you for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Yes, of course! The easiest way is to use additional CSS: .md-footer__inner {
display: none;
} |
Beta Was this translation helpful? Give feedback.
-
With the release of 8.3.0 which added the support for per-page footer navigation hiding, it seems this has deprecated, is there a new way to hide the footer navigation globally? I am still new to CSS so can't seem to find a way myself. |
Beta Was this translation helpful? Give feedback.
Yes, of course! The easiest way is to use additional CSS: