Make Blogger Posts Open in New Tabs

By default, when you click on a post's link, the post page will load on the current tab/window itself. There are lots of reasons on why you might want your posts to open in new tabs. I won't be discussing what these reasons are (because currently my idle mind can't think of any!), I'm just gonna cut to the chase and show you how.

In this tutorial, I will be using Simple Template by Josh Peterson. It should work with other templates as well, but I can't guarantee on those heavily moded ones. The method remains the same though. If you can grasp the idea, you can apply this simple tweak to your template as well no matter how different it is.

Step 1:

If you're using the old Blogger interface: Go to Dashboard - Design - Edit HTML - Back Up (Download Full Template) - Check the box next to 'Expand Widget Templates'

If you're using the new Blogger interface: Go to Dashboard - Template - Backup/Restore - Download Full Template - Close - Edit HTML - Proceed - Check the box next to 'Expand Widget Templates'

Find for the following line:
<a expr:href='data:post.link'><data:post.title/></a>
Add the tag target='_blank' to this line. Refer to the example below on where you should add it:
<a expr:href='data:post.link' target='_blank'><data:post.title/></a>

Step 2:

Find for the following line now, and add the same tag as in Step 1:
<a expr:href='data:post.url'><data:post.title/></a>
Your line should look like this after the addition of your modification tag:
<a expr:href='data:post.url' target='_blank'><data:post.title/></a>
Just a quick image example, this is how my modified lines look like after adding the extra tag:





Save your template and you're done! Have fun!