How can I make content appear beneath a fixed DIV element?
What you need is an extra spacing div (as far as I understood your question). This div will be placed between the menu and content and be the same height as the menu div, paddings included. HTML <div id=”fixed-menu”> Navigation options or whatever. </div> <div class=”spacer”> </div> <div id=”content”> Content. </div> CSS #fixed-menu { … Read more