Lego2012
1/26/2017 - 2:36 PM

Dynamik Fixed Header min-width Filter

Dynamik Fixed Header min-width Filter

<?php

/*
 * 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';
}