Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to set ff and ie to print background images?

I am using stars image to classify some skills and I set it as a background image and positioning to either set one start, two, three, etc. When I try to print the page the images disappear.

So is there any way to make them appear when I print the page or at least have a way of replacing the images with * or something that would be visible?

share|improve this question
5  
It may look like a browser question but this is a css question. – Ross Feb 27 '09 at 22:22
@Ross, perhaps, but since this kind of CSS can be browser-specific (i.e. -webkit-print-color-adjust:exact; works for Chrome v17+ but not FF or IE) the answer in this case might revolve around print options provided by the applications themselves. – Charlie S Jul 5 '12 at 15:30

6 Answers

up vote 15 down vote accepted

Have you considered using a print stylesheet? This could allow you to do something like:

<div class="star">*</div>

/* media:screen */
.star {
    background: ...;
    overflow: hidden;
    text-indent: 9999em;
}

/* media:print */
.star {
    text-indent: 0;
}

or even easier:

<div class="star"><img src="./images/star.jpg" alt="*" /></div>

/* media:screen */
.star img {
    visibility: hidden;
}

/* media:print */
.star img {
    visibility: visible;
}

You can specify stylesheets browsers should use by supplying a media tag, either by css or on the link element:

<link rel="stylesheet" type="text/css" href="main.css" media="screen" />
<link rel="print stylesheet" type="text/css" href="print.css" media="print" />
share|improve this answer
7  
With this approach I might as well have the images instead of the background image. I use the background image because it's a lot easier to have one image and then position then have 10 images – AntonioCS Feb 27 '09 at 22:40

In Firefox, go to File => Page Setup. There is a checkbox for "Print Background (colors & images)". Just check that and you should be all set.

share|improve this answer
This. Not all users want to print a background image (be it because they don't have color ink, color ink is more expensive, etc). – Nick Presta Feb 27 '09 at 22:32

In your print.css file change the background-image to a list item.

So:

.background {
  display: list-item;
  list-style-image: url(yourbackgroundimage.gif);
  list-style-position: inside;
}

This method is described more here: http://www.web-graphics.com/mtarchive/001703.php

share|improve this answer
1  
Nice, but still not working in the all so mighty problem child firefox... – Eric Herlitz Jan 27 '11 at 10:48
Seems to work in Firefox 5, but you need to use a separate rule for every image. CSS sprite maps are not possible. – DisgruntledGoat Jul 12 '11 at 19:49
I found this seemed to work in Chrome, but not Firefox... then I discovered that after I surrounded the image URL in quotes, it worked in Firefox as well. – Alex D Feb 20 at 22:23
1  
The link in the answer does not work, but I was able to find it on the Wayback Internet Archive: web.archive.org/web/20101205163530/http://web-graphics.com/… – D.Tate Mar 8 at 15:03

Actually I found the answer to be rather simple.

Situation: I had a div tag with a background image. Which would not printout when printing.

Solution:

  1. Create another style sheet called "print.css"

  2. Add the following line of code to your all your web pages right after your orginal css stylesheet link:

    <link rel="stylesheet" type="text/css" media="print" href="css/print_styles.css" />
    
  3. Immediately after your for the original non printing header, add the following:

    <div id="header"></div> <!-- YOUR NON PRINTING HEADER -->
    
    <div id="printheader"><img src="images/header_image.jpg" width="940" height="100" alt="header" /></div>
    
  4. In your style.css file, which is the main css style for you site, add the following line:

    #printheader {display: none; } /* Makes the print header not visible */
    
  5. In your print.css file, add the following code:

    #footer, #nav, #sidenav, .print, .search, .breadcrumb, .noprint {display: none;} /* Items from your page you DO NOT want to print */
    
    #container, #container2, #contentwide, #contentwide_tpsub, #contentwide_tp, #contentwide_open {width: 100%; margin: 0; float: none;} /* Clear widths to ensure all text is printed */
    
    #printheader {display: block; } /* Turns ON the div when printing */
    

What you are doing is essentially turning OFF the header on the normal "screen" page and turning the printheader ON when you make a print call.

** Please note: you will need to modify the print.css file to include other elements of your style.css file to format the fonts, colors, etc. Play around with "Print Preview" and add in the elements you need till you get the printout that you've been seeking.

share|improve this answer

For IE http://www.febooti.com/support/faq/iezoom/print-web-page-background.html

There must be something similar for FF.

p.s. you cannot set this for clients!

p.s.2. you can replace this stars with foreground pictures (absolute if needed) in css (media="print").

share|improve this answer
Good point about the CSS print trick. – cletus Feb 27 '09 at 22:24
How can I replace them with foreground pictures??? – AntonioCS Mar 1 '09 at 20:28
One example is writen by Ross bellow, other is javascript. – Glavić Mar 2 '09 at 6:09

I believe this is a browser setting, not the backend of the web sites. I could be wrong however.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.