Custom CSS to disable inline title?

Hi everyone, I like the feature “inline title” but I would like to not have it in one specific note, how can I achieve that? I was thinking of using a cssclass but I woulnd’t know how to proceed since to my knowledge there’s not a css “trigger”… Any idea?

Thank’s

1 Like

At the top of your note, you could add a front-matter yaml block w/ a defined CSS class. For example:

---
cssclass: my-class
---

Then, you could add a custom CSS snippet, with the CSS rule:

.my-class .inline-title{
  display: none;
}

That should disable the display of the inline title. In addition, you can use the same cssclass in any other notes.

Hope that helps.

4 Likes

Worked perfectly, thank you very much

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.