Today i want to share a trick how to make all links open in new windows i know it old trick but i want to post on my blog so i posted and it also helpful for beginners , This request to make all hyperlinks pops up every now and then so might as well make a post for it. To make all links open in new window is amazingly simple.
- Just sign in to Blogger,
- Go to Template—>Edit HTML
- Hit Proceed.
- Tick on Expand Widget Template Check box
- Ctl+F to find <head>
- And immediately after that, add a single line <base target=’_blank’ /> so that it become
<head>
<base target='_blank' />
Save the edited template and you have done, all links in your blog will now open in new tabs or windows
Note: Blogger is now XHTML so all tags must have matching closing tags or be self closing. The above tag is self closing because it has that forward slash / at the end of the tag.