about/docs/handbook/meta/tricks.md

14 lines
No EOL
337 B
Markdown

# Tips + Tricks
Some handy tips and tricks when working on this site:
## Custom HTML
### Hide page title
To hide the title on a page (like on the [:octicons-arrow-right-16: Home page](../../support/index.md)), paste this style block somewhere on the page:
``` html
<style>
.md-typeset h1 {
display: none;
}
</style>
```