Alright, I suggest starting with a neat little template like this:
HTML Code:
<html>
<head>
<title>Layout</title>
<style type="text/css">
body { color: #000; font-family: arial; font-size: 12px; margin: 0; padding: 0; }
div { margin: 0; padding: 0; }
#page-wrap { width: 100%; }
#header { background-color: #ccc; height: 100px; width: 100%; }
#body-wrap { width: 95%; margin: 25px auto; }
#sidebar { background-color: #ccc; float: left; height: 200px; width: 19%; }
#content { background-color: #ccc; float: left; height: 300px; width: 79%; margin-left: 2%; }
</style>
</head>
<body>
<div id="page-wrap">
<div id="header">Header</div>
<div id="body-wrap">
<div id="sidebar">
</div>
<div id="content">
</div>
</div>
</div>
</body>
</html>
And build on that, maintaining the neatness of the code.
Bookmarks