
Do you want the links in your Blogger Link List widget to open in a new tab? You can do this by adding a small change to your template. This guide shows the steps in a clear and simple way.
Before you start
- Make a backup of your theme first. Go to Theme → Backup → Download.
Step 1: Open your template
- Go to your Blogger dashboard.
- Click Theme → Edit HTML.
- Click inside the code area and press Ctrl + F to search.
Step 2: Find your Link List widget
Search for <b:widget id='LinkList or scroll until you see the Link List code block.
It will look similar to this:
<b:widget id='LinkList1' locked='false' title='Recommended Links' type='LinkList' visible='true'>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
Step 3: Add the target attribute
Edit the <a> tag to include target='_blank'. This makes each link open in a new tab.
Important: add a space before target='_blank' so the HTML stays valid.
Update your code to the following:
<b:widget id='LinkList1' locked='false' title='Recommended Links' type='LinkList' visible='true'>
<b:includable id='main'>
<b:include name='widget-title'/>
<b:include name='content'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content'>
<ul>
<b:loop values='data:links' var='link'>
<li><a expr:href='data:link.target' target='_blank' rel='noopener noreferrer'><data:link.name/></a></li>
</b:loop>
</ul>
</div>
</b:includable>
</b:widget>
Adding rel='noopener noreferrer' improves security by preventing the new tab from controlling your blog, and it can also improve performance.
Step 4: Save your changes
- Click Save in the top right corner of the editor.
- Refresh your blog and test the links in the Link List widget.
Troubleshooting
- I cannot find the widget: Try searching for the exact widget ID if you know it, for example LinkList12.
- Links still open in the same tab: Make sure you added a space before target='_blank' and saved the template.
- Multiple Link List widgets: Repeat the same change for each Link List block you want to affect.
Done
Your Link List links should now open in a new tab. This is a small change that makes navigation more comfortable for your visitors.
Great post I have used your technique on my blog please check it out and tell me if its rite..
Make friends with Desi Babes!
Thanks to Author!
thank you bro
Thank you!
Is there a way to target a particular link on the Menu. I just want "Gameplays" on my link list to open in a new tab. Can you please let me know if you can help? would really appreciate it.
Thank you
Thanks! Worked great.
it works perfect, but don't know how to do for just 1 link in the list.
Thank u...
Thank you!