Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1275775

    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?

    #1275964

    Hey byallmeans,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1276017
    This reply has been marked as private.
    #1276018
    This reply has been marked as private.
    #1277106

    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

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.