How to modify the appearance of the tiddler title?

Hello everyone.

I would like to put a line under the tiddler titles and I can’t find which tiddler I have to modify to achieve it.

Can you tell me which one it is?

Thank you.

Hi @JuanPalomo,

For a CSS-based solution, you can put this in a new tiddler tagged $:/tags/Stylesheet:

.tc-tiddler-title { border-bottom: 2px solid red; }

Fred

Thank you very much Fred.
If I wanted to leave more space between the title and the bottom line, how could I do it?

Try this:

.tc-tiddler-title { border-bottom: 2px solid red; padding-bottom: 25px;}

Fred

Perfect, it’s what I needed.
Thanks again Fred.