Creating a print.css stylesheet- where to put the call in the header?
I am trying to locate the following in the header.php file:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>"
type="text/css" media="screen" />
Any help would be greatly appreciated.
Regards,
Nick
Comments
what you ask for, requires files customization what in reference to Item Support Policy [Links visible only for registered users] is not allowed. So if you want to modify files and don't know how, you should contact with your web developer.
Thanks!
Ok, I was looking for some advice on location of the <link> in the header. When using firebug I see that there is an @media print { .gm-style .gmnoprint, .gmnoprint {display:none;}}
I would like to add some css so that when the browser prints it does not output the header or footer. I tried the following in the custom css (in betheme options) but it did not work:
@media print {
body { background:white; color:black; margin:0; }
#header {display: none !important;}
#footer {display: none !important;}
}