Skip to content

Instantly share code, notes, and snippets.

@mattboon
Created December 12, 2012 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattboon/4268461 to your computer and use it in GitHub Desktop.
Save mattboon/4268461 to your computer and use it in GitHub Desktop.
For when you need a different logo for print than screen - either a higher quality, different colour etc. Use this in print.css. Doesn't work in IE7 but IE7/print is a bit of an edge case
/* for <a href="#" class="logo"><img src="..."></a> */
.logo,
.logo:before {
height: 75px;
width: 275px;
display: block; }
.logo {
position: relative; }
.logo img {
display: none; }
.logo:before {
display: block;
position: absolute;
top: 0;
left: 0;
content: url('../img/logo-print.png'); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment