<?php
/*
Theme Name: Hello Elementor Child
Theme URI: http://example.com/hello-elementor-child/
Description: Child theme for the Hello Elementor theme
Author: Your Name
Author URI: http://example.com
Template: hello-elementor
Version: 1.0.0
*/

// Enqueue Parent Theme Styles
function hello_elementor_child_enqueue_styles() {
    // Enqueue the parent theme's style.css
    wp_enqueue_style( 'hello-elementor', get_template_directory_uri() . '/style.css' );

    // Enqueue the child theme's style.css
    wp_enqueue_style( 'hello-elementor-child-style', get_stylesheet_directory_uri() . '/style.css', array( 'hello-elementor' ) );
}
add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_styles' );
?>
