Forum Moderators: not2easy
Below is my html and css info.
Here is my html file:
<body>
<div id="container">
<div class="header"></div>
</div>
<div id="container2">
<div id="rightside"><p>This is my right side</p></div>
<div id="leftside"><p>This is my leftside</p></div>
</div>
<div id="footer">This is my footer</div>
</body>
////////////////
Here is some of my css
body {
margin: 0 auto;
width:773px;
background-repeat:repeat-y;
background-color:#00CC00;
}
#container {
background:#CC9900;
height:100px;
width:773px;
position:relative;
border-bottom: 1px solid black;
float:left;
margin-top:10px;
}
#container2 {
clear:both;
border:1px solid black;
background-color:#00FFFF;
}
div.header {
position:absolute;
bottom:0;
width:640px;
color:#CC66CC;
}
#rightside {
float:right;
width:170px;
background:#6B600A;
margin: 2px 0px 0 0;
}
#leftside {
width:585px;
float:left;
margin: 2px 5px 0 0;
border:1px solid black;
}
#footer {
clear:both;
float:right;
font-size:12px;
}
Thanks for any help