Hi,
I have created the child theme, the function and style.css created.
the color still red color, but I have added in theme option/custom.css
.single-circle-icon span i {background-color:#0b157d;} and it works, is there any different if I put the code in style.css?
what about the menu font color in responsive?
this is the function.php file looks like
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;
// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:
if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’ );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’ );
if ( !function_exists( ‘chld_thm_cfg_child_css’ ) ):
function chld_thm_cfg_child_css() {
wp_enqueue_style( ‘chld_thm_cfg_child’, get_stylesheet_uri() );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_child_css’, 999 );
// END ENQUEUE PARENT ACTION