tylerforret
3/2/2016 - 2:05 PM

CSS solution for jump/anchor link style menus with a fixed header that causes the jump to go to the wrong spot on the page.

CSS solution for jump/anchor link style menus with a fixed header that causes the jump to go to the wrong spot on the page.

h2:before { 
  display: block; 
  content: " "; 
  margin-top: -70px; /*adjust based on fixed header size*/
  height: 70px;  /*adjust based on fixed header size*/
  visibility: hidden; 
}