Posts

Showing posts from May, 2020

Print CSS to Blogger template

Blogger Buster: How to Print your Blogger Posts Effectively Add CSS Style Code to your Blogger Template To add the print styling code to your Blogger template, simply go to Layout>Edit HTML in your Blogger dashboard, and search for the closing </head> tag . Immediately before this line, add the following lines of code (copy and paste this directly to your Blogger template): <style media='print' type='text/css'> #header-wrapper, #header, .header, #sidebar-wrapper, .sidebar, #footer-wrapper, #footer, .date-header, .post-meta-data, .comment-link, .comment-footer, #blog-pager, #backlinks-container, #navbar-section, .subscribe_notice, .noprint {display: none;} #main-wrapper {width: 95%} </style> If you like, you can preview your blog before saving. On this preview page, you'll be able to see the print preview displays only your blog posts (not the sidebar or other unwanted areas). Finally, save your template. Add a "Print th...