close
Namespaces
Variants

MediaWiki:Print.css

From cppreference.com

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will affect the print output */

/**
    Don't display the following items:
     * Navigation bar
     * Edit links
*/
.t-navbar,
.editsection {
    display: none !important;
}

#content {
    font-size: 0.7em;
    padding: 1em 3em !important;
}

.printfooter {
    margin-top: 1em;
    border-top: 1px solid silver;
    font-size: 0.8em;
}