Is it possible to hide the source and edit button on a single page? #5064
Answered
by
squidfunk
SoumayaMauthoorMOJ
asked this question in
Q&A
-
I have enabled and really like the source and edit buttons but I was wondering if I could disable it on a single page e.g. the home page. |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Feb 18, 2023
Replies: 1 comment 1 reply
-
Yes, you can add this directly to the Markdown file: <style>
.md-content__button {
display: none;
}
</style>
# Headline
... |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SoumayaMauthoorMOJ
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you can add this directly to the Markdown file: