child theme
Hi,
I'm following your guide to set up a child theme -
https://docs.appthemes.com/tutorials...r-classipress/
however, once I set up the required files the theme is not inheriting the CSS. Wordpress see's the child them ok but once activated all the text is blue and white and css is not right.
here's the style.css -
/*
Theme Name: HireBee Child
Theme URI:
http://www.appthemes.com/themes/hirebee/
Template: hirebee
Author: AppThemes
Author URI:
http://www.appthemes.com/
Description: A freelance marketplace theme for WordPress.
*/
and the functions.php -
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css
' );
}