OK,I created a child theme folder named it Ving-child
in this folder we should have 3 file
1-screenshot.png
2-style.css
3-functions.php
style.css cotains these
/*
Theme Name: ving child
Theme URI: https://www.divjot.co/blog/2016/02/18/ving-wordpress-theme/
Author: Divjot Singh
Author URI: https://www.divjot.co
Template: ving
Description: ving Child Theme
Version: 1.5
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
In funcions.php put this code
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>
got it?