Forum Moderators: not2easy
Now the next step is to make a printer or text version of each article so users can print off the articles if they want. Is this simply a matter of making a copy of each article linked to a new style sheet that changes the layout of each page to black text on white background?
Is this simply a matter of making a copy of each article linked to a new style sheet that changes the layout of each page to black text on white background?
You certainly could do it this way. The approach you want to take has as much to do with how many pages you have on your site and how often they change. With few pages that change little, your method would work fine. If you have lots of pages that change often, you have just doubled your work load.
There are "Print-This" scripts you could use. Just do a Google search on "Print-This" scripts and you should find lots of possibilities.
There are also services that do it for you (you just add a little java script to each page). We use a service since we have over 2,000 pages many of which change often -- the same one used by CNN, Wall Street Journal and others. It is not expensive. Sticky mail me if you want more information.
CSS
==========
body {
color:#f90;
font-family:verdana,arial,sans-serif;
}
@media print {
body {
color:#000;
font-family:palatino,"Times New Roman",serif;
}
}
It's a pretty basic example, but it should get you started. You can also try this search [google.ca]
-B