When using anchor links on a page with a transparent header, the anchor link ‘jumps’ to the corresponding section, but it slides partially under the header. Is there a solution?
Hey byallmeans,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan Shannon
Hi,
Sorry for the delay. Looks like you have disabled the header transparency on the page above. Please enable it again and use the following filter in the functions.php file to adjust the scroll position.
function avf_header_setting_filter_mod($header) {
$header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
return $header;
}
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
Best regards,
Ismael