View Full Version : Resize a frame?


Spike
02-22-2003, 11:31 AM
I have a top, left and right frame, but I want to make the top one smaller. How do I d that! :(

Sheila
02-22-2003, 11:44 AM
Using this as an example, just change the parts in bold....


<html>
<head>
<title>My Page</title>
</head>
<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>
<body>
</body>
<noframes>
<a href="your main page.html">Click Here</a>
</noframes>
</html>