Home link in page using frames

windows

Guest
Having a problem now that I have put links at the bottom of each of my pages to allow navigation around the site. Specifically on the one page in my site that uses frames, a "Home" at the bottom of the page loads the home and any subsequent pages inside the "secondary" window. How do I deal with this and clear the frames from the window so that any other links that are clicked on are shown in full screen format?<br />
<br />
Help this newbie out ladies and gents. If you are interested in seeing the site, it's at <!-- w --><a class="postlink" href="http://www.pleasuregroove.com">www.pleasuregroove.com</a><!-- w -->. This is my first attempt at writing a web page so cut me some slack!<br />
<br />
PGKeys<br />
<br />
file 1: meettheband.html<br />
<frameset cols = "20%, *"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"meetthebandpics.html"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"largewindow.html" name="bio"><br />
</frameset><br />
----------------------------------------------------------------------<br />
file 2: meethebandpics.html<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"ronbio.html" target="bio"><img border="0" src="images/ron_bw.jpg" width="125" height="175" alt="Ron"></img></a><br />
<br />
<br><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"tamekabio.html" target="bio"><img border="0" src="images/tameka_bw.jpg" width="125" height="150" alt="Tameka"></img></a><br />
<br />
<br><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"michaelbio.html" target="bio"><img border="0" src="images/michael_bw.jpg" width="125" height="175" alt="Michael"></img></a><br />
<br />
<br><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"robbio.html" target="bio"><img border="0" src="images/rob_bw.jpg" width="125" height="175" alt="Rob"></img></a><br />
<br />
<br><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"davebio.html" target="bio"><img border="0" src="images/dave_bw.jpg" width="125" height="175" alt="Dave"></img></a><br />
<br />
<br><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"markbio.html" target="bio"><img border="0" src="images/mark_bw.jpg" width="125" height="175" alt="Mark"></img></a><br />
---------------------------------------------------------------------<br />
file 3: largewindow.html<br />
<table border=1 align="center" cellpadding="0" cellspacing="0"><br />
<br />
<tr><br />
<br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/"images/lounge.jpg" width="600" height="400" align="middle"></td><br />
<br />
</tr><br />
<br />
</table><br />
<br />
<p><br />
<br />
<center><br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/index.html">Home</a>&nbsp<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/aboutpg.html">Intro</a>&nbsp<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/news.html">News</a>&nbsp<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"mailto:[email protected]">Contact</a>&nbsp<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/themusic.html">Music</a>&nbsp<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/events.html">Events</a>&nbsp<br />
<!a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/meettheband.html"></a><br />
<br />
</center><!--content-->Try adding this to your link that you want to replace the framed page: TARGET="_parent"<br />
<br />
Like this:<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.pleasuregroove.com/index.html" target="_parent" >Home</a><!--content-->Thanks. That worked perfectly! I put that into the largewindow.html file and also each of the members bio pages that are selected on the left frame. Everything works great now.<br />
<br />
PGKeys :D<!--content-->
 
Back
Top