Code:
* {
margin: 0;
padding: 0;
}
body {
font-family: "Helvetica", "Arial", sans-serif;
font-size: 12px;
}
#container {
width: 100%;
height: 100%;
}
#main {
overflow: auto;
white-space:nowrap;
text-align: left;
position: absolute; top: 100px; left: 0; right: 0; bottom: 0;
}
#header {
height: 100px;
text-align: left;
position: fixed; top: 0px; left: 0;
width: 100%;
}
ul, li {
display: inline;
}
This is what I worked out, seems to work as I wanted.
Thanks anyway