Hide Buttons when Printing
I am trying to hide the buttons a page that I am printing using HTML. Here is what I have so far. Any help would be appreciated. Thank you
<style type="text/css">
@media print {
/* Unwanted page elements */
#t17NavBar, #t17Tabs, #t17PageFooter, #style-sheet {
display: none;
}