Frames...

taekwondokid42

New Member
Messages
268
Reaction score
0
Points
0
My script looks like this:

<html>
<head></head>
<frameset rows="15%,*">
<frame src="missile.jpg" scrolling="no">
</frameset>
</html>


<html>
<body>
<p>HI!</p>
<...



The problem is that when I add frames to the site, it chops off everything else, all other code is just ignored...?
 

*Face

New Member
Messages
62
Reaction score
0
Points
0
Yes. That's the whole point of frames. If you want to have a frame in your site with other normal content, you can use an iframe:

Code:
<iframe src="missile.jpg" height=heighthere width=widthhere></iframe>

There are other options, just as the overflow CSS property, SSI includes etc, but that's probably a bit... more "advanced".
 
Top