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?
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?
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>
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.