Priya
Priya

Reputation: 3

Content hiding under Sticky Navbar

Here is the URL of my website (https://hwrmedia.com.au/).When I scroll down to the HWR Publications section and click on any post of that section, It goes to particular post on another page, hiding the content under the sticky navbar. For this I have used this js code:

  $(document).ready(function(){
      if (window.location.hash == "#moreInfo") {
        $('html, body').animate({
           scrollTop: $("#moreInfo").offset().top-100
         }, 1000);
      }
   });

Upvotes: 0

Views: 71

Answers (1)

Ajay
Ajay

Reputation: 196

just add this jQuery Code

$('html, body').animate({
   scrollTop: $(window.location.hash).offset().top-100
 }, 1000);

Upvotes: 1

Related Questions