
I created a tab to manage tasks. !Tasks is the title of the document. I want to make this title invisible, how can I do that?

I created a tab to manage tasks. !Tasks is the title of the document. I want to make this title invisible, how can I do that?
I recently did this for my “Home” document.
First, I set a CSS class in the front matter:
---
cssclass: document--no-title
---
Then in a CSS snippet, I did
.document--no-title .inline-title {
display: none;
}
Thanks! It works perfectly.