Rendered markdown font is too big

Greetings,

all of my rendered markdown fonts are too big. How can I reduce them?

This works with the Markdown viewer pane, not the WYSIWYG editor.

Try adding this to your userstyle.css file. Change the font size to suit.

Tools > Options > Appearance > Show advanced settings > Custom stylesheet for rendered markdown

After saving the userstyle.css file ensure that you fully shut down (File > Quit) and restart Joplin.

body {
    font-size: 13px;
   /* sets body text font size in pixels */
}
table th, table td {
    font-size: 13px;
   /* sets table cell and header font size in pixels */
}
a {
    font-size: 13px;
   /* set link text size - includes TOC links*/
}

thanks you

You're welcome.

Forgot to mention, add this to also control the size of the font rendered for code

code {
    font-size: 13px;
   /* sets code font size
}
.inline-code {
    font-size: 13px;
   /* sets inline code font size - code element does not seem to control this */
}

thanks again

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