*\
 Theme Name:   customizr child
 Theme URI:    http://dresdencodak.com/customizr-child/\
 Description:  customizr child theme\
 Author:       caitlin\
 Author URI:   http://dresdencodak.com\
 Template:     customizr
 Version:      1.0.0\
 License:      GNU General Public License v2 or later\
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html\
 Tags:         light, dark, wide, responsive-layout, accessibility-ready\
 Text Domain:  customizr-child\
*/\
}

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'parent-style'; // This is 'customizr-style' for the Customizr theme.

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>