How to adjust page margins

Please, How to adjust page margins
Thanks

@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

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