Skip to content
🎉

Cyber Sale Blowout! Get 50% OFF — Limited Time Only!

Click to Save 50% (opens in a new tab)

Alter The Sticky Shrink Header Height

function my_custom_sticky_header_height( $array ) {
	$array['shrinkHeaderHeight'] = 100; // EDIT THIS.
	//$array['shrinkHeaderLogoHeight'] = 70; // Uncomment and edit to alter logo height
	return $array;
}
add_filter( 'wpex_localize_array', 'my_custom_sticky_header_height' );
All PHP snippets should be added via child theme's functions.php file or via a plugin.
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Related Snippets
Back To Top