You want open link in new window or tabs. The links in a Link List and Labels that are normally in the sidebar widget. You would need to change the HTML code in your template. Here, we shall talk about the hack that you can put into your template.
Text Links and Image Links
You change code HTML as follows:
<a href=”URL” target=”_blank” title=”TITLE”>Text</a>
The HTML code of a picture or image link looks like this:
<a href=”URL” target=”_blank” title=”TITLE”><img src=”Image URL” border=”0″ width=”80″ height=”15″ alt=”Description”></a>
The part of the code that tells the browser to open the link in a new browser window or new tab is the target attribute (in blue). If you want the readers to view the link in the same browser window, simply remove target=”_blank” from the code.











