WordPress: GeneratePress: Sticky Header verdeckt die Überschrift bei Sprungzielen …

https://generatepress.com/forums/topic/anchor-link-content-shows-up-under-sticky-menu/

/* 
+++++++++++ START
DEN FOCUS SO VERSCHIEBEN, DAMIT SICH DIE ÜBERSCHRIFT 
NICHT HINTER DER MENULEISTE VESTECKT
*/

html {
  scroll-padding-top: 120px; /* height of sticky header */
}
:target {
  scroll-margin-top: 120px; /* height of sticky header */
}
:target::before {
  content: "";
  display: block;
  height: 120px; /* fixed header height*/
  margin: -120px 0 0; /* negative fixed header height */
}
/* 
+++++++++++ ENDE
*/