misterhh 0 Report post Posted August 8, 2007 I am trying to make a menu for my site.I made an HTML page with the text/links of the menu, then I embedded that page in all the main "content" pages using an iframe. The problem is that whenever I click the links in the menu they open INSIDE of the iframe instead of switching the whole browser to the page the link is directed to. I hope I'm not TOO hard to understand. Oh, and on this page it has the perfect example of what I want.http://www.w3schools.com/tags/tag_iframe.aspSee how when you click on one of the links in the example frame, the whole page changes to that link. Share this post Link to post Share on other sites
truefusion 3 Report post Posted August 8, 2007 The reason why they load in the iframe rather than the parent page is because you did not specify the target for the links in the iframe. You must give the target attribute either _top or _parent as its value. Example: <a href="#" target="_top">Link</a> Share this post Link to post Share on other sites