Okay. I have the following in my child themes functions
function hh_load_scripts() {
wp_enqueue_style( 'learndash-custom', get_template_directory_uri() . '/learndash_template_style.css' );
wp_enqueue_style( 'learndash-quiz-custom', get_template_directory_uri() . '/learndash_quiz_front.css' );
wp_enqueue_style( 'custom-style1', get_template_directory_uri() . '/style1.css' );
}
add_action( 'wp_enqueue_scripts', 'hh_load_scripts' );
But it seems to be loading the parents (Pro) theme directory resulting in a 404.
Ideas anyone?