I have header html element which is positioned fixed at top: 0
and set height:120px;
I have added margin-top: 120px
to teaser.
I have menu with link to items in the same page. I have a problem in getting those link location to be in the exact view when user clicks on the link.
Half of the link location is hidden under the header and another half is visible to the user which does not look at all.
the structure of the document looks like this;
<header>
<div class="logoContainer">
</div>
<div class="navMenu">
<a href="#featureList">Features</a>
<a href="#team">Features</a>
</div>
</header>
<div class="teaser" id="teaserID">
</div>
<div class="features" id="featureList">
</div>
<div id="team">
</div>