I found this css code for a work-around on here for version 7.0, looking for similar for 7.1.
@media print {
/*resize the content*/
.blog-item-content-wrapper {
width:100% !important;
margin:0px !important;
padding:0px !important;
color: #000;
background-color: #fff;
}
/*hide a bunch of extra stuff*/
#blogItemSidebarContent, .blog-item-actions, #header, #footer, #comments .header-controls, #comments .new-comment-area, .sqs-announcement-bar-dropzone, .sqs-frontend-overlay-editor-widget {
display:none !important;
}
/*format the author profile*/
.blog-item-author-profile--sidebar {
margin-top:500px !important;
display:block !important;
}
/*remove weird link formatting*/
a::after {
content: "" !important;
}
/*reduce page spacing*/
#page {
margin:0px !important;
}
}