2010/2/17 Susan Bennett <susan.benn...@geaugalibrary.info>:
> Hi Zico and group,
>
> In the Firefox page setup make sure that under the Margins and Header/Footer
> tab that all the footers are set to blanks. We have ours set so that only
> the date/time is printed in the upper right. That stops the page at the end
> of the printing.

Or you could try using the JS Print Setup [1] extensión for firefox
that lets you handle that options "server side".
Note that you would have to change your moremember-receipt.tmpl file to add

<script type="text/javascript">

   if (typeof jsPrintSetup != "undefined") {

   // set portrait orientation
   jsPrintSetup.setOption('orientation', jsPrintSetup.kPortraitOrientation);
   // set top margins in millimeters
   jsPrintSetup.setOption('marginTop', 0);
   jsPrintSetup.setOption('marginBottom', 0);
   jsPrintSetup.setOption('marginLeft', 0);
   jsPrintSetup.setOption('marginRight', 0);
...

and so on.

To+

[1] https://addons.mozilla.org/en-US/firefox/addon/8966

-- 
Aparición con vida de Jorge Julio López.
_______________________________________________
Koha-devel mailing list
Koha-devel@lists.koha.org
http://lists.koha.org/mailman/listinfo/koha-devel

Reply via email to