View Single Post
  #1 (permalink)  
Old 07-05-09, 09:18 AM
Poster Poster is offline
New Member
 
Join Date: Jul 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Extending the height of a frame

I am using this (Frameset Example Title (Replace this section with your own title)) example frameset, but I want to extend the 'Related' frame to the full length of the page (i.e. shortening the width of the top and bottom frames).

Here is the code for the right frame:
<html>
<head>
<title>HTML Frames Example - Related</title>
<style type="text/css">
body {
font-family:verdana,arial,sans-serif;
font-size:10pt;
margin:10px;
background-color:#644f2d;
color:white;
}
a {
color:white;
}
</style>
</head>
<body>
<h3>Related</h3>
<p>
<a href="http://www.quackit.com" target="_top">Quackit</a><br />
<a href="http://www.code-generator.net" target="_top">Code Generator</a><br />
<a href="http://www.zappyhost.com" target="_top">ZappyHost</a><br />
<a href="http://www.natural-environment.com" target="_top">Natural Environment</a><br />
<a href="http://www.great-workout.com" target="_top">Great Workout</a>
</p>
</body>
</html>

the top frame:
<html>
<head>
<title>HTML Frames Example - Top Nav</title>
<style type="text/css">
body {
font-family:verdana,arial,sans-serif;
font-size:10pt;
margin:10px;
background-color:#a08029;
}
</style>
</head>
<body>
<h3>Top Navbar</h3>
<p><a href="menu_1.html" target="menu">Menu 1</a> | <a href="menu_2.html" target="menu">Menu 2</a></p>
</body>
</html>

and the bottom:
<html>
<head>
<title>HTML Frames Example - Footer</title>
<style type="text/css">
body {
font-family:verdana,arial,sans-serif;
font-size:10pt;
margin:10px;
background-color:black;
color:white;
}
a {
color:white;
}
</style>
</head>
<body>
<h3>Footer</h3>
<p><a href="white.html" target="content">White Page</a> | <a href="green.html" target="content">Green Page</a></p>
</body>
</html>

Any help would be greatly appreciated.
Reply With Quote