Im creating a css for print. Already many of the css is working, but I have a problem, the site work with a javascript animation logotype and i want to show a iamge onlye version of logotype to print (the block with animation actually dont print) my solution is create a block with a image (with logotype) and in css tell:

print.css

.block-13 {
 
  display: block;
   width:220px;
   height:220px;

	position: relative;
} 

and in global.css

.block-13 {
   display:none;
}

Part of the code work, the block dont show in screen, but in printing dont appear the block (and the logotype)

some solution? any idea?