MediaWiki:Print.css: Difference between revisions

From University of Nebraska Medical Center
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will affect the print output: #footer { display: none; }")
 
No edit summary
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will affect the print output */
/* CSS placed here will affect the print output */
@media print {
#footer {
#footer {
     display: none;
     display: none;
}
#content {
background: url("http://www.unmc.edu/images/bg-logo-unmc-large.png") repeat x scroll 0 0;
}
}
}

Latest revision as of 09:08, August 10, 2012

/* CSS placed here will affect the print output */
@media print {

#footer {
    display: none;
}

#content {
background: url("http://www.unmc.edu/images/bg-logo-unmc-large.png") repeat x scroll 0 0;
}

}