Printable Versions

C

Cindy

Can anyone tell me how I set up printable versions of web
pages. I currently update several documents several times
a day and do not want to maintain two copies of each
document and then add in a link to the printable version.
 
T

Thomas A. Rowe

Have you considered creating your documents as PDF files. then all you have
to do is import the PDFs into your web and create links to them.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
J

jon spivey

Hi Cindy,
you can make a seperate stylesheet for print, eg you'd probably want to
change to black text white background and block some parts of the page
(navbars etc) from printing -
<style type="text/css" media="print">
body{
background-color:white;
color:black;
}
..noPrint{
display:none !important;
}
</style>
<p class="noPrint">this paragraph won't print</p>
 
S

Stefan B Rusynko

Or create your printable content only as a printable page, and then add it as an include page in your richer full page (w/ a link to
the printable content as say a Popup) - only 1 page to maintain

--




| Hi Cindy,
| you can make a seperate stylesheet for print, eg you'd probably want to
| change to black text white background and block some parts of the page
| (navbars etc) from printing -
| <style type="text/css" media="print">
| body{
| background-color:white;
| color:black;
| }
| .noPrint{
| display:none !important;
| }
| </style>
| <p class="noPrint">this paragraph won't print</p>
|
| --
| Jon
| Microsoft MVP - FP
|
| | > Can anyone tell me how I set up printable versions of web
| > pages. I currently update several documents several times
| > a day and do not want to maintain two copies of each
| > document and then add in a link to the printable version.
|
|
 
F

FIDO

How is this implemented if the page is mostly in table.. I mean the section
with no print !important
 
J

jon spivey

Hi,
something like this
<style type="text/css" media="print">
..noPrint{display:none !important;}
</style>
</head>
<body>
<table><tr><td>this will print</td><td class="noPrint">this won't
print</td></tr></table>
 
G

Guest

Cindy

I'm having the same problem. If you find the answer please let me know

Pau

----- Cindy wrote: ----

Can anyone tell me how I set up printable versions of web
pages. I currently update several documents several times
a day and do not want to maintain two copies of each
document and then add in a link to the printable version.
 
S

Stefan B Rusynko

Create your plain printable page as a html page
Then in your normal page (w/ all content / layout ) just include the printable page using Insert Web Component Include Page and add
a link to the printable html page (or set it to open the printable page a popup window)

--




| Cindy,
|
| I'm having the same problem. If you find the answer please let me know!
|
|
| Paul
|
| ----- Cindy wrote: -----
|
| Can anyone tell me how I set up printable versions of web
| pages. I currently update several documents several times
| a day and do not want to maintain two copies of each
| document and then add in a link to the printable version.
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top