Changing font size for one note

Joplin 2.8.8 (prod, win32)

Can I change the size of text within one note?
I came across global zoom % and CSS but I assume those change sizes everywhere?

1 Like

Inside the markdown for one note, try adding the following:

<style>
body {
  font-size: 18pt;
}
</style>

If you only want to apply it when not printing/exporting to PDF:

<style>
@media screen {
  body {
    font-size: 14pt;
  }
}
</style>
2 Likes

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