Hi Michael, thanks for your reply.
Currently in my functions.php file I have the following:
<?php
//* Code goes here
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
I guess this is pulling through the main css file which itself contains only this:
@import url(assets/css/normalize.css);
@import url(assets/css/icomoon.css);
@import url(assets/css/theme-styles.css);
@import url(assets/css/woocomerce.css);
Do I need to add additional code in the functions.php file to pull through the theme-styles.css file?