What I have is a rather basic issue with position: fixed.
Here's a sample: http://jsfiddle.net/wxEsY/
What I want is the scrolling to start below the black bar (with a fixed position).
Any help appreciated.
Regards
|
What I have is a rather basic issue with position: fixed. Here's a sample: http://jsfiddle.net/wxEsY/ What I want is the scrolling to start below the black bar (with a fixed position). Any help appreciated. Regards | |||
feedback
|
|
Add padding to second div equal to height of second div.
When you say scrolling below the back bar, it sounds like you want the content to begin below the back bar. So add some padding to second div to account for presence of fixed div. | |||
feedback
|
|
Does this do it? I just gave the 'content' DIV relative positioning and a y-axis from the top equal to the height of the 'nav' and then gave the 'nav' a z-index to keep it on top of the 'content'.
| |||
|
feedback
|
|
You just need to add a top margin to your .content div equal to the size of the .nav block + some padding:
| |||
|
feedback
|