Hello,
Styles enqueue order. I replaced
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
etheme_child_styles();
}
with
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001 );
function theme_enqueue_styles() {
etheme_child_styles();
}
in child theme functions.php, it’s required after the latest update.
Regards