I set up a new print format for POS but I noticed it prints in pages which makes the printer cut a page. I would like it to be printed as a long receipt without cutting and continuing on multiple pages
I’m guessing you’re using a receipt printer or other thermal printer for the continuous receipts. Do you have a manufacturer, because you have to adjust the print format to the respective printer?
This is an example from a print format for a 80 mm Epson TM thermal printer:
<style>
@page {
size: 80mm auto;
margin: 0mm;
}
.print-format {
width: 80mm;
margin: 0;
padding: 0;
font-family: monospace;
font-size: 9px;
line-height: 1.1;
}
</style>
If you print the whole thing via the web or PDF, you need to have the printer driver installed, otherwise it will convert the whole thing back to your default A4 Format or something else or the Printer doesnt accept the job.
1 Like