On Mon, 22 Jan 2007, Jim Rey wrote:

> My website uses autohandler for the main look and feel page, but I want to
> popup printer-friendly pages that don't use the autohandler, pages like
> "Terms and Conditions" and "Invoices".  At the moment, I have the static
> pages on another site, but the invoices are dynamically generated and I want
> to create them without fancy headers or menus etc. Any suggestions?

        If I were doing something like this, the first thing I'd think of is 
using a different CSS sheet for printing (see HTML sample below), and then, if 
there's stuff you don't want displayed at all, just put the whole header in a 
div and then in the stylesheet do eg.

.menubar {
         display: none;
}

        And now for the HTML sample I promised.

<link rel="stylesheet" type="text/css" href="print.css" media="print" />

        Sure, this is all non-Mason techniques.  But this is what I do on my 
Mason sites.

        :)


---------------------------------------------------------------------
| Name: Tim Nelson                 | Because the Creator is,        |
| E-mail: [EMAIL PROTECTED] | I am                           |
---------------------------------------------------------------------

----BEGIN GEEK CODE BLOCK----
Version 3.12
GCS d+++ s+: a- C++$ U+++$ P+++$ L+++ E- W+ N+ w--- V- 
PE(+) Y+>++ PGP->+++ R(+) !tv b++ DI++++ D G+ e++>++++ h! y-
-----END GEEK CODE BLOCK-----

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Mason-users mailing list
Mason-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mason-users

Reply via email to