HTML/CSS help
HTML/CSS help
Out of context: Reply #10
- Started
- Last post
- 10 Responses
- dbloc0
try this
html, body {
overflow: hidden;
}#header {
position:fixed;
left: 100px;
top: 0;
width: 100%
height: 150px;
}sideNav {
position:fixed;
left: 0;
top: 0;
width: 100px;
}#content {
padding: 150px 0 0 100px;
overflow: scroll;
}