Avada 5.0 not using child theme CSS – Theme Fusion

Just contacted support and had this really easy fix, it worked for me. In your child functions.php file, change out these lines:

From this (not working):
function theme_enqueue_styles() {
wp_enqueue_style( ‚avada-parent-stylesheet‘, get_template_directory_uri() . ‚/style.css‘ );
}

To This (apparently working):
function theme_enqueue_styles() {
wp_enqueue_style( ‚child-style‘, get_stylesheet_directory_uri() . ‚/style.css‘, array( ‚avada-stylesheet‘ ) );
}

Hope this helps anyone who stumbles on the thread!

Quelle: 5.0 not using child theme CSS – Theme Fusion