English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I am currently working on my business's webpage: www.pomeroyappraisal.com and want to drop the printer friendly pages completely and just have it so that when someone prints a page it prints the printer friendly version.

someone told me that this could be done with CSS.

could someone walk me through the process step by step
and provide any sites that may add additional help

if you want the HTML codes, just go to view source in your web browser under whatever page

i plan to do this process on all pages, a good example would be the "contact us" page.

thank you in advance for your help.

2007-05-21 06:55:34 · 5 answers · asked by the_infielder44 2 in Computers & Internet Programming & Design

thanks so far, i actually thought about the pdf, but that would still require updating 2 documents everytime an update is performed to the page.

i have heard that with CSS you only have to update one page

2007-05-21 08:29:42 · update #1

5 answers

Create a separate CSS file, name it something like print.css and style it how you like. Then in the head tag of your page(s), put the following line:



Make sure the path is the correct one to your stylesheet.

For your regular CSS for your site, you would use:

2007-05-21 07:16:57 · answer #1 · answered by Jen 2 · 3 0

Yes, it is possible to use a CSS print stylesheet that automatically takes effect when a user prints a page from your site.

However, taking a look at your site, it would be very difficult to implement this technique.

I suggest spending a few dollars to hire a Web designer, and make print styling a requirement.

2007-05-23 11:51:10 · answer #2 · answered by Dave M 1 · 0 1

As the previous user said use



Alternatively consider creating PDF pages

2007-05-21 08:08:37 · answer #3 · answered by acb29 4 · 0 0

You have many good suggestions above but remember that the photographer should give specific permission before you make prints. I am going out on a limb here and will give everyone permission to print any photo I have published on my blog as long as I am given credit for taking the photo. The photos should make fairly good prints at 4 x 6. I have not watermarked them either. Link is below.

2016-05-18 23:49:38 · answer #4 · answered by Anonymous · 0 0

Ditto the above; alternatively, you may place, in your external style sheet (it is rather a booger to figure out, but it can be done) a section of stylings under an @media print { ... }
section
...
For example, in the normal flow of things, your display may include

Page 1

and your stylesheet may say...
div#pagenumber { display: none; }

but you may have...
@media print {
div#pagenumber { display: block; }
}

...que no?

2007-05-21 10:26:43 · answer #5 · answered by fjpoblam 7 · 0 0

fedest.com, questions and answers