Forum Replies Created

Viewing 1 replies (of 1 total)
  • I ran into the same problem!

    I solved it by using the functions.php code from this guide: https://themify.me/docs/child-themes

    <?php
    /**
    * Enqueues child theme stylesheet, loading first the parent theme stylesheet.
    */
    function themify_custom_enqueue_child_theme_styles() {
        wp_enqueue_style( 'parent-theme-css', get_template_directory_uri() . '/style.css' );
    }
    add_action( 'wp_enqueue_scripts', 'themify_custom_enqueue_child_theme_styles', 11 );
Viewing 1 replies (of 1 total)