Andrew N. said: The following javascript will produce a decently printable version of the main page, some areas of the character bio and info page will be truncated, however. To use it, open the character sheet in a separate window, open the developers console, copy/paste this code, and then press enter. After that, you should be able to print a decent copy of the main page. var cssText = ' body {height:11.1in; width:8.5in;} .ui-dialog {position:relative!important;} .nav.nav-tabs,.sheet-footer,.sheet-tab-button {display:none;}' var styleTags = document.getElementsByTagName('style') var lastStyleTag = styleTags[styleTags.length-1] lastStyleTag.append(cssText) document.getElementById('editobject').remove() Updated version that will print on multiple pages, I note it only really works on the first tab, for the bio and spells maximise the window and use the snipping tool, you can print from the snipping tool var cssText = ' body {height:24.1in; width:8.5in;} .ui-dialog {position:relative!important;} .nav.nav-tabs,.sheet-footer,.sheet-tab-button {display:none;}' var styleTags = document.getElementsByTagName('style') var lastStyleTag = styleTags[styleTags.length-1] lastStyleTag.append(cssText) document.getElementById('macrobar').remove() document.getElementById('edit-button').remove()