action.skip

How to print transaction tables landscape?

← PDF and Email FAQ

If your business requires to show many columns in the transaction tables, you may need to rotate the corresponding pages of the invoice PDF in order to print landscape, and to use (most of) the available page width. To do so, you add a corresponding CSS rule to the template.

  1. Open the template to be edited.
  2. In the Layout & Design section, double-click the Custom CSS field and specify the following CSS code:

    /* sets landscape page format */
    @page land {
        size: landscape;
    }
    .c9 {
        page: land;
    }
    /* forces using the available page width */
    .transaction-records-table {
        width: 25cm;
    }
    
  3. Click Save.

Related information:

Working With Templates