How to Add a Print it Button to Your Blogger Blog
Making your blog posts printer-friendly with just one click can significantly improve the user experience. While browsers already offer the ability to print web pages through the “File > Print” option, having a dedicated print button adds a layer of convenience for your readers. Whether it’s to share offline reading materials, reference resources, or just to save important information, some users appreciate the ease of directly printing content. In this article, we’ll walk you through the steps to add a “Print it” button to your Blogger blog.
Why Add a Print Button to Your Blog?
While it might seem redundant to add a print button when browsers already offer built-in print options, there are several reasons why having this feature is worth considering:
- User Convenience: With a dedicated button, your readers don’t have to navigate through menus. One-click printing saves time and effort.
- Improved Functionality: By providing a visible print option, you can guide users who may not be aware of the browser’s print feature.
- Cleaner Prints: You can customize what gets printed—using CSS, you can ensure unnecessary elements (like ads, sidebars, etc.) aren’t printed along with the main content.
Step 1: Log into Your Blogger Dashboard
First, log into your Blogger account. From your dashboard, select the blog where you’d like to add the print button.
Step 2: Navigate to the Template Section
Once inside the blog settings, click on "Template" in the left-hand menu. Next, click on “Edit HTML” to make changes to your blog’s layout and structure. This is where you’ll be inserting the print button code.
Step 3: Add the Print Button Code
Now, you’ll need to search for the correct section of your HTML. Look for the <div class='post-footer'>
tag, which usually marks the end of your post’s main content. Just above this line, paste the following code:
<div style="float: left; padding-left: 10px;"> <a href="javascript:window.print()" rel="nofollow">Print this Article</a> </div>

This simple code creates a clickable link that will trigger the browser’s print function when a user clicks on it.
Step 4: Customize the Button with CSS and Graphics
Plain text links can be functional but may not be visually appealing. Adding some style with CSS or replacing the link with an image can give your print button a professional and attractive look. For instance, you can design a custom button using software like Photoshop or Canva. Once you have your image ready, use the following code to display it:
<div style="float: left; padding-left: 10px;"> <a href="javascript:window.print()" rel="nofollow"> <img src="https://example.com/your-custom-print-button.jpg" alt="Print this article" /> </a> </div>
Make sure to replace the image URL with the correct path to your custom button image.
Step 5: Styling the Button
You can add CSS rules to further customize the look and feel of your button. Here’s a quick example of how you can style the button directly within your HTML:
<div style="float: left; padding-left: 10px;"> <a href="javascript:window.print()" rel="nofollow" style="background-color: #f0f0f0; padding: 10px; border-radius: 5px; text-decoration: none; font-weight: bold; color: #000;">Print This Article</a> </div>
This adds a basic design, giving your button a modern, clean look with rounded corners and a subtle background.
Step 6: Test and Save Your Changes

After making your changes, click "Save Template" and preview your blog to ensure everything is working smoothly. Test the print button to verify that it triggers the correct print action. Also, check the printed version of your blog post to make sure it looks the way you want it to. If not, you may need to adjust the CSS rules to hide elements you don’t want to appear in the printed version.
Benefits of Adding a Print Button
Including a print button on your blog offers a range of advantages, both for you and your readers:
- Improves User Experience: Some readers prefer to print content for later reference or offline reading. By offering this option, you’re catering to their needs.
- Promotes Sharing: Printable blog posts can be easily shared in educational or professional settings where a physical copy is more appropriate.
- Adds Functionality: For some niche blogs, such as recipe blogs, travel guides, or instructional content, a print feature can make the posts even more useful.
Advanced Customization: Hiding Elements in Print View
If you want to create a cleaner, more professional printout, you can use CSS to hide certain elements (like sidebars, headers, or ads) when the post is printed. Add the following code to your blog’s CSS section:
@media print { .sidebar, .header, .footer, .advert { display: none; } .content { width: 100%; } }
This will ensure that only the main content of your post is printed, giving your readers a clutter-free printout.
Conclusion: Is a Print Button Necessary for Your Blog?
Adding a "Print it" button to your Blogger blog may seem like a small enhancement, but it can make a big difference in terms of user experience. Depending on your blog’s focus, a print button might be a valuable tool for readers who prefer printed content. By following the steps outlined above, you can easily add this functionality and even customize it to match your blog’s style.
So, what do you think? Is the print button a feature you’ll add to your blog, or do you see it as unnecessary? Let us know in the comments below—we’d love to hear your thoughts!
Spam is not welcome here. Any form of unsolicited promotional content, repeated messages, or irrelevant comments will be removed. Please contribute meaningfully to the discussion. Failure to adhere to these guidelines may result in moderation, including the possibility of being blocked. Let's keep the conversation engaging and on-topic!