View Full Version : doesn't open up in the right frame!


SaltedLemons
06-10-2003, 01:57 AM
Hello!
I'm JUST starting to make a website, and I'm using frames (heh duh!)
Anyway, I'm trying to make my "about me" section open up in the left frame, but it instead opens in another window. Also, all my links are size 2 font when I'd rather have them size one...I'd appreciate it if someone could help me :-)
-Heaven

EmpTcaN
06-10-2003, 02:35 AM
1st. if you want to change the font size add this in before the links
<font face=" choose a font that most computer would have like arial, or comic sans ms" size="1">

2. give the frames a name
like this
<frameset cols=?,? border=? frameborder=? framespacing=?>
<frame src="left.html" name="left" scrolling=no noresize>
<frame src="right.html" name="right">
</frameset>

then finally, add targets into your links like this
<a href="youlink" target="right"> click here </a>

you can change the names, or targets, or the questions marks to anything you want
make sure that target is in each link then it will go to that side of the frame

cadi
06-10-2003, 03:07 PM
For the links, etc., you could also define some style sheets . . . that way you wouldn't have to mess around with the font tags anymore.

SaltedLemons
06-11-2003, 10:24 PM
Thanks for all your help! Everything worked perfectly :-D
-Heaven