I’m having trouble getting the down from the top exactly by the height of the navbar as described. Any assistance would be appreciated.
position: fixed;
is not in normal flow so is not bound to the same layer as main, assuming there is no parent-child relation, either.
I would not use, position: absolute;
but, position: relative; top: 200px;
on main
.
This assumes that the navbar has a height of 200px.