Click to See Complete Forum and Search --> : Home link in page using frames


PGKeys
05-09-2003, 02:31 PM
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?

Help this newbie out ladies and gents. If you are interested in seeing the site, it's at www.pleasuregroove.com. This is my first attempt at writing a web page so cut me some slack!

PGKeys

file 1: meettheband.html
<frameset cols = "20%, *">
<frame src="meetthebandpics.html">
<frame src="largewindow.html" name="bio">
</frameset>
----------------------------------------------------------------------
file 2: meethebandpics.html
<a href="ronbio.html" target="bio"><img border="0" src="images/ron_bw.jpg" width="125" height="175" alt="Ron"></img></a>

<br>

<a href="tamekabio.html" target="bio"><img border="0" src="images/tameka_bw.jpg" width="125" height="150" alt="Tameka"></img></a>

<br>

<a href="michaelbio.html" target="bio"><img border="0" src="images/michael_bw.jpg" width="125" height="175" alt="Michael"></img></a>

<br>

<a href="robbio.html" target="bio"><img border="0" src="images/rob_bw.jpg" width="125" height="175" alt="Rob"></img></a>

<br>

<a href="davebio.html" target="bio"><img border="0" src="images/dave_bw.jpg" width="125" height="175" alt="Dave"></img></a>

<br>

<a href="markbio.html" target="bio"><img border="0" src="images/mark_bw.jpg" width="125" height="175" alt="Mark"></img></a>
---------------------------------------------------------------------
file 3: largewindow.html
<table border=1 align="center" cellpadding="0" cellspacing="0">

<tr>

<td><img src="images/lounge.jpg" width="600" height="400" align="middle"></td>

</tr>

</table>

<p>

<center>

<a href="http://www.pleasuregroove.com/index.html">Home</a>&nbsp
<a href="http://www.pleasuregroove.com/aboutpg.html">Intro</a>&nbsp
<a href="http://www.pleasuregroove.com/news.html">News</a>&nbsp
<a href="mailto:info@pleasuregroove.com">Contact</a>&nbsp
<a href="http://www.pleasuregroove.com/themusic.html">Music</a>&nbsp
<a href="http://www.pleasuregroove.com/events.html">Events</a>&nbsp
<!a href="http://www.pleasuregroove.com/meettheband.html"></a>

</center>

requestcode
05-09-2003, 02:37 PM
Try adding this to your link that you want to replace the framed page: TARGET="_parent"

Like this:
<a href="http://www.pleasuregroove.com/index.html" target="_parent" >Home</a>

PGKeys
05-09-2003, 03:46 PM
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.

PGKeys :D