Hi there,
somehow the scroll down links are causing me an issue. upon clicking the normal behaviour would be to scroll down so that the top of the next section is alligned with the top of the browser window. in my case the scroll down stops and leaves a gap of about 1-2 cm of the previous section visible.
thanks
Hey ,
Fixed, added this to child theme functions.php:
function avia_get_header_scroll_offset(){
return 0;
}
I happened because the scroll script calculates the top offset using the header size.
Best regards,
Josue
Thanks Josue!