Forum Moderators: not2easy
Here's my css code:
html, body {
font-size: 16px;
margin: 0;
padding: 0;
font-family:"Trebuchet MS" ,Arial, Helvetica, sans-serif;
width: 1000px;
}
#header {
height: 90px;
width: 1000px;
background-color:#F4A929;
}
#logo {
height: 61px;
width: 313px;
background: url(../images/logo1.gif);
position:absolute;
left:14px;
top: 14px;
}
#container {
width:950px;
margin:0 auto;
padding:30px 0;
}
#footer {
width:950px;
text-align:center;
margin:0 auto;
padding:10px 0;
}
And my html (I removed the content but whatever I put in there, it just won't scroll):
<body>
<div id="header">
</div>
<div id="container">
</div>
<div id="footer">
</div>
</body>
Thanks for any help, it's greatly appreciated.