View Full Version : Frames/popups?


Greeno
05-10-2003, 12:22 AM
In my popup.. I put a frame code in it
blog.html (the popup)
content.html (left frame)
blogger.html (right frame)

My frame code is in the page of my popup page. Do I have to put my frame code in a different page?

Heres my code..


<html>
<body>
<title>Blind Sighted|Version 1|ReyRey|Who Dat Jumpin Out The Sky?</title>
<STYLE TYPE="text/css">

BODY
{
scrollbar-base-color: white;
scrollbar-arrow-color: navy;
scrollbar-DarkShadow-Color: dodgerblue;
}
</STYLE>

<FRAMESET COLS="30%,70%">
<FRAME SRC="content.htm">
<FRAME SRC="blog.htm">
</FRAMESET>
</body>
</html>

Elentari
05-10-2003, 02:38 AM
The page that has your framecodes/frameset should only have that on it, nothing else and it should be your index.html page.

Also, you forgot to give the different frames names (like I put in bold)....they are required so that you have a way to target your links to specific frames.


<html>
<head>
<title>Blind Sighted|Version 1|ReyRey|Who Dat Jumpin Out The Sky?</title>
</head>

[CODE]
<FRAMESET COLS="30%,70%">
<FRAME SRC="content.htm" name="content" >
<FRAME SRC="blog.htm" name="blog" >
</FRAMESET>
</body>
</html>

Greeno
05-10-2003, 11:04 AM
Okay.. thanks :)