HTML help

Genocyde

Beta member
Messages
1
well, i havent been doing HTML for much more than a week id say, and im having some trouble, i have the web page split so that there is a side menu bar, and the main window. The side menu has links on it to different pages, and then another link that says back to main page, but when you click on the "back to main page" link, the main page opens with an extra side menu bar, so there is two of them now.
 
Yeah, an example of code or a link would help. However, it sounds like you have the "target" attribute set in the <a href="" target=""> Tag. If you don't, you can set it like this:
Code:
<a href="yourlink.html" target="_self">Link</a>
where yourlink is the link to the page you want to display, and target in this case would refer to the current window, not just the frame. And, as Jon F said, I generally tend to stay away from frames.

Other targets are:
_blank
_new
_parent
etc...
 
Back
Top Bottom