How to hide buttons for code actions on specific page? #4844
Answered
by
squidfunk
pulkitkrishna00
asked this question in
Q&A
-
I want to hide the code actions button on my homepage. How to do so? |
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Jan 10, 2023
Replies: 1 comment 2 replies
-
You can use CSS. Include this in your Markdown file for the homepage: <style>
.md-content__button {
display: none;
}
</style> |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
pulkitkrishna00
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use CSS. Include this in your Markdown file for the homepage: