When you're linking to a page on another website, it's good to have it open in a new window so you don't lose visitors to that site. Learn how to control that with a little HTML code.
1. Create an external link to a website
2. Go to the HTML of the page --
3. Find the link that you created. If the link I created was for the phrase "AdminXL" linking to the AdminXL.com website
<a href="http://www.adminxl.com">AdminXL webmaster Forum</a>
4. Add the following little tid-bit of code that appears in bold to that line of code..
<a
target="_blank" href="http://www.adminxl.com">AdminXL Webmaster Forum</a>
dont forget the " after _blank.. or it wont work..
