Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the ASP Net Sprites package to create CSS Sprites on my website.

It is working, but the images it generates do not appear when printed.

The code generated at HTML level is:

<a href="/" id="siteLogo"><img class="getmecooking-logo-png" src="data:image/gif;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /></a>

How can I get the logo image to appear when a user prints the page?

I have tried adding this in my print.css stylesheet, but it didn't work:

#siteLogo
{
    visibility: visible;
}

The print.css is working fine and it is formatting the page as I want it to for other elements on the page. My only issue is that I can't get the site logo image to display when it is printed.

share|improve this question
You can't. It's a browser setting and as stated below you can't rely on it, so you should use img tags. Anyway it's good practice to use image tags for images (photos, logos, etc) and css background-image for backgrounds (repeating patterns, etc...). – Pedro Correia May 10 '11 at 12:49
The reason I want to do it this way to to automate the generation and usage of CSS Sprites. I might just have to use a stand-alone image for the logo. – Techboy May 10 '11 at 12:53

5 Answers

up vote 9 down vote accepted

It's up to the user and their browser settings to print or not print background images. To keep yourself from relying on that, put the images in the foreground in HTML.

share|improve this answer

You could have an own media-query for print and use :before selector with the attribute "content".

Put this in the media query and it will insert the image when you try to print:

p:before { content: url(images/quote.gif); }

http://www.htmldog.com/reference/cssproperties/content/

share|improve this answer

set media="print"

<LINK REL="stylesheet" TYPE="text/css" MEDIA="print, handheld" HREF="foo.css">

Reference

share|improve this answer
Sorry I should have explained. The print.css is working fine and it is formatting the page as I want it to for other elements on the page. My only issue is that I can't get the site logo image to display when it is printed. – Techboy May 10 '11 at 12:26
@ r u using media type?? – diEcho May 10 '11 at 12:28
1  
why downvoted?? OP does not clear question ..see the comments – diEcho May 10 '11 at 12:29

If you use Internet Explorer, this is how you do it:

  • Go to the 'Tools' menu.
  • Click on 'Internet Options'.
  • Click on the 'Advanced' tab.
  • Put a check on print background color and images.
share|improve this answer

For Chrome and Safari you can add the following in your CSS:

@media print
{
    * {-webkit-print-color-adjust:exact;}
}

For other web browsers unfortunately it's up to the user to manually select the option to print background images (e.g. for IE 9 and IE 10 users have to go in the Settings -> Print -> Page Setup, and activate the option)

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.