How to adjust page margins

@weishuashua welcome to the forum.

I never noticed before that the print dialogs do not have margin settings. That's how little I print!

It seems that page margins for printed notes can be adjusted using custom css.

In userstyle.css you can add:

@media print {
    @page {
        margin: 2cm 2cm 2cm 3cm;
        /* sets margins for printing - margin order = top right bottom left */
        /* setting just one value will apply that value to all four margins */
    }
}

This will affect printed notes as well as those exported to PDF.

Info about using custom css in Joplin

1 Like