Title: Print
Last modified: August 31, 2016

---

# Print

 *  Resolved [Sheldon-64](https://wordpress.org/support/users/sheldon-64/)
 * (@sheldon-64)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/)
 * How do I print just the schedule (right now when I attempt to print (chrome),
   I get a printout of the entire webpage (header, footer, etc).
 * [https://wordpress.org/plugins/shiftcontroller/](https://wordpress.org/plugins/shiftcontroller/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [Sheldon-64](https://wordpress.org/support/users/sheldon-64/)
 * (@sheldon-64)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/#post-7128362)
 * I created a duplicate (printable) page and added some custom css to get rid of
   the ‘non’ shiftcontroller information.
 * .page-id-19314 #header,
    .page-id-19314 #sub-footer, .page-id-19314 #footer-widgets,.
   page-id-19314 #footer { display: none; }
 * Then created a link on original schedule page
 * [http://wmbc.ca/give-2/volunteer-schedule/](http://wmbc.ca/give-2/volunteer-schedule/)
 * that links to printable schedule.
 * [http://wmbc.ca/volunteer-schedule-2/](http://wmbc.ca/volunteer-schedule-2/)
 * Very close to perfect (printing in landscape mode and legal paper). Just need
   to tighten up on the line spacing to get it all on one page.
 * VERY excited, will save a lot of work for everyone!
 *  Thread Starter [Sheldon-64](https://wordpress.org/support/users/sheldon-64/)
 * (@sheldon-64)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/#post-7128364)
 * Added the following to tighten up line spacing.
 * .page-id-19314 .entry-content ul li { /* Get rid of bullets, and tightens up 
   line spacing */
    list-style-type: none !important; }
 * Now my schedule fits on one page. HEAVEN!
 *  [Daniel W](https://wordpress.org/support/users/daniel-w-1/)
 * (@daniel-w-1)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/#post-7128367)
 * Put everything in a [@media](https://wordpress.org/support/users/media/) print
   tag last in your regular CSS-file.
 * Then the regular page uses one layout on screen and one when printed. (No need
   of duplicate pages.)
 *     ```
       @media print {
       .page-id-19314 #header, .page-id-19314 #sub-footer, .page-id-19314 #footer-widgets, .page-id-19314 #footer {
       display: none;
       }
   
       /* Get rid of bullets, and tightens up line spacing */
       .page-id-19314 .entry-content ul li {
       list-style-type: none !important;
       }
       }
       ```
   
 *  Thread Starter [Sheldon-64](https://wordpress.org/support/users/sheldon-64/)
 * (@sheldon-64)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/#post-7128370)
 * Awesome! Works perfect!
 * Learned something new.
 * Also eliminated the Add Shifts Plus Sign from printed schedule.
 * /* To make shiftcontroller schedule page pretty for printing */
    [@media](https://wordpress.org/support/users/media/)
   print { /* Remove wordress header, footer, etc */ .page-id-19084 #header, .page-
   id-19084 #sub-footer, .page-id-19084 #footer-widgets, .page-id-19084 #footer {
   display: none; }
 *  /* Remove the Add Shift Button from printable schedule */
    .page-id-19084 #nts.
   hc-py1 { display: none; }
 *  /* Get rid of bullets, and tightens up line spacing */
    .page-id-19084 .entry-
   content ul li { list-style-type: none !important; } }

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Print’ is closed to new replies.

 * ![](https://ps.w.org/shiftcontroller/assets/icon-128x128.png?rev=1851172)
 * [ShiftController Employee Shift Scheduling](https://wordpress.org/plugins/shiftcontroller/)
 * [Support Threads](https://wordpress.org/support/plugin/shiftcontroller/)
 * [Active Topics](https://wordpress.org/support/plugin/shiftcontroller/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shiftcontroller/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shiftcontroller/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Sheldon-64](https://wordpress.org/support/users/sheldon-64/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/print-8/#post-7128370)
 * Status: resolved