View Full Version : Frame Help Needed


webby
07-12-2003, 11:53 AM
I am helping a friend with his site and I am stuck at the moment. The address is www.atcuniform.tk , if you click on the GDT & BBS link you will see that it opens up in a new window, with a new title and menu. He wants it so that when you click on the homepage link, it takes you back to the index page, he wants the title, menu and main content pages to open without another new window popping up. I am coding the site in HTML by the way and I dont have Frontpage or any other programs so please don't give me any instructions on doing it using thase.

Any help would be appreciated!

pb&j
07-12-2003, 01:24 PM
dunno if this helps, but it sounds like you need a value for your TARGET property in your links...

"_blank" will open a new window for the link.

"_top" will open the link fully into the current window.

"_self" will open the link in the current frame.

sample...

<a href="mypage.html" target="_blank"> text here </a>

webby
07-13-2003, 09:24 AM
Hey thanks for that! "_top" is the one I was looking for!