Office Live Open a Link in a New Window "I'm Constructing" This can be handy to show addtional pages or different sites without having the viewer navigate away from the current page. I use it to open my Blog rather than just having the user leave my page. |  |
Example 1 - Open a text link in a new window. |
Example - Click Below Method: 1. Go to the page where you want the link and click in the Zone where you want the link to appear. 2. Click Modules and HTML.
4. Copy the code below and paste it into the HTML Dialog box.
<a href="http://artotems.spaces.live.com/" target="_blank" title="Click Here to visit Artotems' Blog">artotems.spaces.live.com</a>
5. Replace http://atotems.spaces.live.com with the url you are linking to. 6. Replace Click Here to visit arTotems' Blog with the text you want the user to see as they mouse over your link. 7. Replace artotems.spaces.live.com with the text you want the user to see on your page. 8. Click OK 9. Your link is now there and has a boundry box around it. You can fiddle with boundry box handles to get it to align how you wish it to. 10. Enjoy!
| |
Example 2 - Open an image link in a new window |
1. Go to the page where you want the link and click in the Zone where you want the link. 2. Click Modules and HTML.
4. Copy the code below and paste it into the HTML Dialog box.
<a href="http://yoursite/yourpage.aspx"target=_Blank><img src="/Images/yourfile.jpg" alt="Your text" border="0" /></a>
5. Replace http://yoursite/yourpage.aspx with the url you are linking to. 6. Replace yourfile.jpg with the image file you want the user to see on your page. 7. Replace Your text with the text you want the user to see as they passover the image. 8. Click OK 9. Your image link is now there and has a boundry box around it. You can fiddle with boundry box handles to get it to align how you wish it to.
| |