Hi,
Would appreciate some advice on this puzzle…
I am trying to navigate to a section of the page (leading to the top of a div).
Expected:
but the target navigation leads me to the middle of the div (not what I want…)
What I am getting:
Would really appreciate some pointers!
So it’s doing exactly right: when you click the internal link (for example a href="#products"
), it brings the div with the id “products” to the top of the display window. But you have content that is fixed there, so you need to find a way to push that content down, probably inside of the container.
Easiest way? Give each target element a padding-top: ...
value slightly larger than the fixed header. Of course, that will change your spacing some – might want to lessen the padding-bottom: ...
of the preceding element. 
1 Like
Wonderful.
Thanks a ton @snowmonkey. All sorted now.
Really appreciated the tip on adjusting padding.
Thanks again.
Glad I could help. looking pretty good! 
1 Like