How to reduce font size of exported PDF

I have CSS in userstyle.css that modifies the font size of the render markdown, but I am at a loss on how to configure the exported PDF output.

I think you can use the below in your userstyle.css file

@media print {
    body {
        font-size: xx;
    }
}

But I’m not sure!

2 Likes

This is the way

1 Like

This is the way