After clicking a link I am redirected to a new page where the scrolling stops at a specific div. However, the specific div is underneath the header so it doesn't show the correct div.
Is there anyway i can make the scrolling stop at the specific div while having a fixed/sticky header with jquery or any other simple solution?
Here is the HTML code I currently have:
<div class="faq-section col-md-6 col-sm-12 col-sm-12">
<h3>OFTE STILTE SPØRSMÅL</h3>
<ul class="list-unstyled">
<li><i class="fa fa-arrow-right"></i><a href="leveranse/#questionOne">Hvor lang tid tar det før jeg får varen jeg har bestilt?</a></li>
<li><i class="fa fa-arrow-right"></i><a href="betalinger/#questionTwo">Hvilken betalingsmetoder godtar dere i nettbutikken?</a></li>
<li><i class="fa fa-arrow-right"></i><a href="retur-og-bytte/#questionThree">Hvordan returnerer jeg en vare?</a></li>
<li><i class="fa fa-arrow-right"></i><a href="leveranse/#questionFour">Hvilke land leverer dere til?</a></li>
<li><i class="fa fa-arrow-right"></i><a href="leveranse/#questionFive">Hvor lang returrett har jeg på bestillingen?</a></li>
</ul>
</div>
Let me know if you need any other code.