Adjusting page breaks for printing

The setup sheets print correctly provided the default cascading style sheet style.css is used. If you want to use a style sheet supplied with previous PowerMill installations, you need to customise it:

  1. Use a text editor to open the style sheet file in your custom template set.
  2. Scroll down the file, and locate the code beginning with:

    /* A4 is 21.0cm x 29.7cm

  3. Find the code:

    div.a4page {

    position: absolute;

  4. Change it to:

    div.a4page {

    page-break-after: always;

  5. Save the file.
  6. Tip: Although there are several occurrences of 'position: absolute' in the cascading style sheet, this is the only change you need to make.