How to increase height of note title

Operating system

Windows

Joplin version

3.0.13

What issue do you have?

As in the attached picture, I would like to increase the padding at the top of the note title, and also center the title text vertically (i,e., make the height of the note title line taller). How would I achieve that in userchrome.css? Thanks!

Screenshots

Untitled.jpg

Modify the title bar's min-height and padding-top CSS values to your preference. For example:

.title-input {
  min-height: 60px !important;
  padding-top: 10px !important;
}

Thanks for the tutorial. It works!

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