This will create two new Header Styles in the customizer for the Mai Lifestyle Pro child theme for Genesis Framework.
First create the directores lib and js. Add mai-customizations.php to lib. Add custom.js to js. Add the following lines to your functions.php file:
// Enqueue Custom JS script add_action( 'wp_enqueue_scripts', 'enqueue_custom_script' ); function enqueue_custom_script() { wp_enqueue_script( 'custom', get_stylesheet_directory_uri() . '/js/custom.js', array( 'jquery' ), '1.0.0' ); }