View Full Version : Target Links Not Working!


Erhothwen
07-13-2003, 11:37 PM
On my left frame, I used the correct (I'm pretty sure it's correct) HTML so that when you click on a link, the page shows up on the right side. However, when I click on the links, it pops up in a new window instead. Is my HTML wrong or something?

left.html

<html>
<head>
<STYLE type="text/css"><!--
A:link{color:"#FFFFFF";text-decoration: none}
A:visited{color:"FFFFFF";text-decoration: none}
A:active{color:"#FFFFFF";text-decoration:underline overline}
A:hover{color:"#FFFFFF";text-decoration:underline overline}
--></STYLE>
<font color="#FFFFFF" font size="3" font face="Century Gothic">
<a href="http://toj.diaryland.com/home.html" target="rightside">Home</a>
<br>
<a href="http://toj.diaryland.com/about.html" target="rightside">About</a>
<br>
<a href="http://toj.diaryland.com/whome.html" target="rightside">Who, Me?</a>
<br>
<a href="http://toj.diaryland.com/mguide.html" target="rightside">Site Guide</a>
<br>
_______________
<br>
<UL>
<LI><a href="http://toj.diaryland.com/articles.html" target="rightside">Articles</a>
<LI><a href="http://toj.diaryland.com/editorials.html" target="rightside">Editorials</a>
<LI><a href="http://toj.diaryland.com/fanfiction.html" target="rightside>Fan Fiction</a>
<LI><a href="http://toj.diaryland.com/orifiction.html" target="rightside">Original Fiction</a>
<LI><a href="http://toj.diaryland.com/poetry.html" target="rightside">Poetry</a>
<Li><a href="http://toj.diaryland.com/everything.html" target="rightside">Everything Else</a>
</UL>
</font>
<br>
<font color="#FFFFFF" font size="2" font face="Century Gothic">
<a href="http://toj.diaryland.com/contact.html" target=rightside>Contact Me</a>
<br>
<a href="http://toj.diaryland.com/links.html" target="rightside">Links</a>
<br>
<a href="http://toj.diaryland.com/aff.html" target="rightside">Affiliating/Linkage</a>
<br>
<a href="index.html" target=_top>Frame Break!</a>
<body bgcolor="003399">
</font>
<p>&nbsp;</p>
</head>
</html>

kicker91
07-13-2003, 11:52 PM
you need to end your head with </head> and start your body with <body>. all you content should not be in <head> and </head>.

Dude128
07-14-2003, 03:16 AM
what is the exact name of the right frame, found on your frameset page? the target value must exactly match that name, and it is case sensitive.

if in doubt, could you post your frameset code?

Erhothwen
07-15-2003, 03:38 PM
index.html

<html>
<head>
<title>The Open Journal</title>
</head>
<frameset rows="100">
<frameset cols="160,*">
<frame src="http://toj.diaryland.com/left.html" NAME="left">
<frame src="http://toj.diaryland.com/right.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="www.theopenjournal.cjb.net">Click Here</a>
</noframes>
</html>

-Erhothwen

Dude128
07-15-2003, 03:43 PM
the links are being targeted to rightside, but the frame is named right. the frame's name and the target have to match exactly.