Im trying to get a layout with header, footer and two columns. The width of the site must be relative to the screen resolution and the height as well. The right column should have a width of 250px. The left column (content) should have a vertical scrollbar if the content is to large.
So with other words, the header, footer and right side should always be visible and be fixed. The content should have vertical scrollbar if needed.
Thanks
Edit:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
<style type="text/css">
body {
font: 11px Tahoma, Arial;
margin: 0;
padding: 0;
color: #3d5770;
background-color: #A7A7A7;
}
#wrapper
{
min-width: 987px;
margin-left: auto;
margin-right: auto;
width: 98%;
}
#header
{
background-color: orange;
clear: both;
float: left;
width: 100%;
height:100px;
background-color: orange;
}
#main
{
width: 100%;
background-color: White;
}
#footer
{
position: absolute;
bottom: 0px;
height: 30px;
clear:both;
background-color: aqua;
margin-left: auto;
margin-right: auto;
width: 98%;
}
#content
{
position: absolute;
top: 100px;
bottom: 30px;
overflow: auto;
margin-right: 262px;
background-color: White;
}
#right
{
width: 245px;
float: right;
}
#rightInner
{
position: absolute;
top: 100px;
bottom: 30px;
width: 244px;
background-color: Lime;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">header</div>
<div id="main">
<div id="right">
<div id="rightInner">Banners</div>
</div>
<div id="content">Dynamic content Dynamic content Dynamic content Dynamic content Dynamic content Dynamic content Dynamic content </div>
</div>
<div id="footer">footer</div>
</div>
</body>
</html>
As you can see, the content div is growing horizontaly and the height is the max height of the screen. This works fine in my 22" screen but when I change the screensize I get a little split in my screen between the content and right div...