ID:191627
 


I try to make it so that the webpage loads up on the right side of the webpage...







THIS IS WHERE I WAS TRYING TO NAME THE TARGET






Welcome to the Black Claw Bandits Official Website!

Duties




So how can I get it to go on the right side of the frames?

Here is the current webpage...
Maybe try <base target="right">

Sariat wrote:
I try to make it so that the webpage loads up on the right side of the webpage...

<HTML>
<HEAD>
<TITLE></TITLE>
<META name="description" content="">
<META name="keywords" content="">
<META name="generator" content="CuteHTML">
<target="right"> <big> THIS IS WHERE I WAS TRYING TO NAME THE TARGET</big>
</HEAD>
<BODY BGCOLOR="#000033" TEXT="#FF6666" LINK="# FF0000" VLINK="#996666">


Welcome to the Black Claw Bandits Official Website!

</BODY>
</HTML>


So how can I get it to go on the right side of the frames?

Here is the current webpage...

In response to Creek
Still not working...

I have an index.html file...

here it is.

<HTML>
<HEAD>
<TITLE>Black Claw Bandits Official Website</TITLE>
<META name="description" content="">
<META name="keywords" content="">
<META name="generator" content="CuteHTML">
</HEAD>
<NOFRAMES>
<BODY BGCOLOR="#000033" TEXT="#FF6666" LINK="# FF0000" VLINK="#996666">




Welcome to the Black Claw Bandits Official Website!
</BODY> </NOFRAMES>
<frameset cols="160,*">
<frame src="left.html" name="left">
<frameset rows="85,*">
<frame src="top.html" name="top">
<frame src="right.html" name="right">
</frameset>
</frameset>
</HTML>

Can somebody pleas help me out?
I hate to bump but...

Bumpa Bumpa Bump ba ba ba ba ba ba ba bab aba (sing to circus song)
<base target=> is a frame option that makes links clicked go into the target, here's a small example:


<!--Index.html-->

<HTML>
<BODY>
<FRAMESET ROWS=** COLS**>//Replace the ** with numbers
<FRAME NAME="left" src=left.html noresize>
<FRAME NAME="right" src=right.html noresize>
</FRAMESET>

<NOFRAMES>
Welcome! You don't have frames
</NOFRAMES>
</BODY>
</HTML>


<!--left.html-->

//This will be on the left side

<HTML>
<BODY>
<BASE TARGET="right">//All links clicked will go into the frame named "right"

<a href=http://www.byond.com>BYOND!</a>
<BR>
<a href=left2.html target=left>Open in left frame</a>//this one will open in the frame named "left" (target=self) will do the same in this case
</BODY>
</HTML>


<!--right.html-->

<HTML>
<BODY>
This is the right frame, whoo!
</BODY>
</HTML>