| View previous topic :: View next topic |
| Author |
Message |
fnnrdv
Joined: 30 Apr 2008 Posts: 2
|
Posted: Wed Apr 30, 2008 1:49 am Post subject: Navigation frame issues |
|
|
hello, I am trying to make a navigation frame, the one i have works fine right now, but i decided i wanted to make a link to take the user back to the original page, and when i click this link it takes me back to the original but then also has another frame, so i end up with 2 navigation frames on the same page, anyone know what i'm doing wrong.
here is a couple peices of code.
| Code: |
<html>
<frameset cols="120,*">
<frame src="frame.html">
<frame src="frame2.html"
name="showframe">
</frameset>
</html>
|
| Code: |
<p>
<a href="index1.html" target="showframe"><font size="4" color="#000000"> Index </font></a>
</p>
|
the first one is the one calling the frame pages, and the second is the link i'm having problems with. |
|
| Back to top |
|
 |
|
|
rangana 250+ Club

Joined: 27 Feb 2008 Posts: 439 Location: Cebu City Philippines
|
Posted: Wed Apr 30, 2008 2:16 am Post subject: Re: Navigation frame issues |
|
|
target="showframe" links to the frame having name of showframe
...If you want to act is as normal link, change the target to _parent  |
|
| Back to top |
|
 |
fnnrdv
Joined: 30 Apr 2008 Posts: 2
|
Posted: Wed Apr 30, 2008 3:02 am Post subject: Re: Navigation frame issues |
|
|
it turned out that the link was linked to the main page when it should have been linked souly to the page that is labeled as index, it ended up just being the wrong file.
so its fixed now |
|
| Back to top |
|
 |
|