-
Currently in the process of making a frontpage for the docs of my Discord bot. Everything looks the way I want, except for one small thing, which is the top section. In the top section would I like to get rid of the navigation tabs, since they are already linked to in the bottom section, the extra logo on the left and the search bar itself. Thing is, I'm not sure what parts I can and cannot alter in the HTML files/partials to only change it for the frontpage but not the remainder of the docs. Help for this would be appreciated.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The easiest way is to just use CSS in your Markdown file: <style>
.md-tabs {
display: none;
}
</style> |
Beta Was this translation helpful? Give feedback.
The easiest way is to just use CSS in your Markdown file: