How do I hide the title from a specific tiddler?

I used the following css:
.tc-title > h2.hide {display: none !important; height: 0px !important; margin-bottom: -60px !important;

& I used the following field & value on that specific tiddler:

…& it’s still not working. Could someone point me in the right direction?

When you use a class field in a tiddler, the specified value is added to the tc-tiddler-frame class.
Also, the h2 is not a child of the tc-title . Rather, the h2 element itself has a class of tc-title.

Thus, the CSS selector you want is: .tc-tiddler-frame.hide h2.tc-title

enjoy,
-e

2 Likes