
Originally Posted by
bluewalrus
[...]don't know what you mean by image.
He/She means the attached image.
@Disa:
Here are the basics of what you want:
HTML code:
HTML Code:
<div id="wrapper">
<div id="header">Header</div>
<div id="content">Content</div>
<div id="footer">Footer</div>
</div>
CSS code:
Code:
div div {
background-color:#eeeeee;
margin:5px;
border: 1px solid #999999;
}
#wrapper {
margin:auto;
width:700px;
text-align:center;
}
#header {
height:30px;
}
#content {
height:500px;
}
#footer {
height:30px;
}
Good luck!
Bookmarks