Table of Contents

Created by: gwideman, Jul 18, 2013 3:41 am
Revised by: gwideman, Jul 18, 2013 3:41 am (1 revisions)

Overview

When using the browser's Print function, we can have different CSS applied by including an @media print {...} section to either the site stylesheet, or to CSS in the wikispaces theme file.
This is particularly useful to hide some page elements such as sidebars. These will be particular to the theme in question.
One set of features that most (all?) wikispaces sites will have that need to be hidden is the Edit button and neighboring buttons, and also the floating black menu in the top right corner. That's the topic of this article.

How to

I added the following to the theme CSS section:
@media print {
 
...
 
.WikiInternalHeaderNav,
#WikispacesNoticeHolder,
.MenuBar .ButtonPosition {
  display: none;
}
 
}
.