racers_site
04-20-2003, 05:02 PM
I'll give you my code at the bottom of this message... If you can please insert a code into the my code and post it. That would be SUPER! The promblem is when I click on a link in my frame, the page for the link pops up and then if you click a link while your in the page that poped up, theres not another page that pops up, it just stays in the 1st pop up page. My code is....
<FRAMESET COLS="20%,80%">
<FRAME SRC="links.html" name=S>
<FRAME SRC="index1.html" name=T>
</FRAMESET>
Please e-mail me or post here on what should I do.
Thanks!
Matt lightening_larmore_racing@yahoo.com
racers_site
04-20-2003, 05:20 PM
You can post your code for a frame with the code to NOT make it open in a new window.
Thanks!
MaGiCSuN
04-20-2003, 07:19 PM
You have to target your links
if you want links in frame S to open in frame T then you must use this code:
<a href="linkhere.html" target="T">linkname here</a>
love,
Mirna
racers_site
04-20-2003, 07:35 PM
can you please post a code or use my code (code mut be able to make frame) with the code you just told me? There are so many codes for frames.... So if you would just post a code with the code you told me that would help A LOT!
Thanks
Matt
MaGiCSuN
04-20-2003, 07:45 PM
Did you looked at lissa's frames page? oh well i will explain:
First you make an index.html page and put this code on it:
<html>
<head>
<title>My Page</title>
</head>
<body>
<FRAMESET COLS="20%,80%">
<FRAME SRC="links.html" name=S>
<FRAME SRC="index1.html" name=T>
</FRAMESET>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>
DON"T put any other html on it, ONLY the code above. Then you make two pages named index1.html and links.html
on index1.html you put some content whatever you want. On link.html you put the links and you use this code for the links:
<a href="linkhere.html" target="T">linkname here</a>
because you want the links to open into the frame named T you have to fill in target="T" so that they will be targetted into that frame
Love,
mirna
racers_site
04-20-2003, 07:58 PM
I put that code
(
<html>
<head>
<title>My Page</title>
</head>
<body>
<FRAMESET COLS="20%,80%">
<FRAME SRC="links.html" name=S>
<FRAME SRC="index1.html" name=T>
</FRAMESET>
</body>
<noframes>
<a href="Your Homepage Here">Click Here</a>
</noframes>
</html>
) and I did my links the way you said
(
<a href="http://www.geocities.com/lightening_larmore_racing/About.html" target="T">About</a><br>
<a href="http://www.geocities.com/lightening_larmore_racing/Car.html" target="T">Car</a><br>
<a href="http://www.geocities.com/lightening_larmore_racing/Me.html" target="T">Driver and Crew</a><br>
<a href="http://www.geocities.com/lightening_larmore_racing/Photos.html" target="T">Photos</a><br>
<a href="http://www.geocities.com/lightening_larmore_racing/Sponsorship.html" target="T">Sponsorship Info</a><br>
<a href="mailto:lightening_larmore_racing@yahoo.com">
Contact L.L.R.</a>
) and it just shows me a blank page.... What did I do wrong? I didn't change anything but the link page. Please tell me what I did wrong and how I can fix it....
Thanks
Matt
MaGiCSuN
04-20-2003, 08:49 PM
sorry i found this error out a few minutes ago. Change this frame code:
<html>
<head>
<title>My Page</title>
</head>
<body>
<FRAMESET COLS="20%,80%">
<FRAME SRC="links.html" name=S>
<FRAME SRC="index1.html" name=T>
</FRAMESET>
</body>
<noframes>
<a href="Your Homepage Here">Click Here</a>
</noframes>
</html>
to this:
<html>
<head>
<title>My Page</title>
</head>
<FRAMESET COLS="20%,80%">
<FRAME SRC="links.html" name=S>
<FRAME SRC="index1.html" name=T>
</FRAMESET>
<body>
<noframes>
<a href="Your Homepage Here">Click Here</a>
</noframes></body>
</html>
racers_site
04-20-2003, 09:05 PM
I can't thank you enough!!!!!! It works!!! I've been working on this promblem for like 2 days and about 10 hour!!!
THANK YOU!!!!!!!
Matt