I have been trying to position sidenav using answers from this question. Currently I'm able to fix the menu position to the page simply by:
<div style="position: fixed" ..>
..
</div>
or by adding this to the corresponding css rule. It works ok but the position start right after the jumbotron subhead and stays there when I scroll. I want it not to override the jumbotron at the top of the page and move to a fixed position at the top of the page when I scroll down (just like in the documentation page except that I don't care about active highlights)
I have tried to copy the source of the documentation and added docs.css
file in the page as well but it doesn't work for some reason. How can I do this?
EDIT
Here's a figure to make it clear