Hi,
After i add child theme to newscard, the home page width decrease.
the child theme code is created by using CHILD THEME GENERATOR plugin as following”
/
function newscard_child_theme_enqueue_child_styles() {
$parent_style = ‘parent-style’;
wp_enqueue_style($parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style(
‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style ),
wp_get_theme()->get(‘Version’) );
}
add_action( ‘wp_enqueue_scripts’, ‘newscard_child_theme_enqueue_child_styles’ );
/
currently the whole site no plugin is active as I wrote this problem.
http://www.chartingyourtrading.com
please help.
ray