It worked. Thank you so much!!
FIXED:
I forgot that I had custom CSS for the anchor position within elementor to be displayed in the center of the screen. Seems like the theme didn’t like it…
Here the code if you have similar problems:
body:not(.elementor-editor-active) .elementor-menu-anchor:before {
content: "";
display:block;
height: 100px; /* fixed header height*/
margin: -100px 0 0; /* negative fixed header height */
visibility: hidden;
pointer-events: none;
}