Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DalavanCloud/c4b39ab48a174406899edc73a2d39c32 to your computer and use it in GitHub Desktop.
Save DalavanCloud/c4b39ab48a174406899edc73a2d39c32 to your computer and use it in GitHub Desktop.
Sets a custom minimum width for the fixed header functionality to remain in effect.
/*
* Sets a custom minimum width for the fixed header functionality to remain in effect.
* Paste this into your Custom Functions and then adjust the '920' value to your specific needs.
*/
add_filter( 'dynamik_fixed_header_min_width', 'custom_fixed_header_min_width' );
function custom_fixed_header_min_width() {
return '920';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment