кто юзает дочернюю тему hello и не меняются стили при редактировании style.css - в файл functions.php дочерней темы - замените содержимое на:
function hello_elementor_child_enqueue_styles() {
$parent_style = 'hello-elementor';
// Use if Hello Elementor is below version 2.0
$parent_style_deprecated = 'hello-elementor-theme-style';
$child_style = 'hello-elementor-child';
$child_version = wp_get_theme()->get( 'Version' );
wp_enqueue_style( $child_style, get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), $child_version, 'all' );
}
add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_styles', 10 );
у меня так заработало )