How Can I Use A Child Theme Effectively When Parent’s CSS Is Located in a ‘CSS folder’?
I was just told to ‘enque a new style,’– does this mean write a new @import rule? No, it doesn’t. And in fact that is the worst way to include new stylesheets as it causes page load delays. What you want to do is something like this (straight from the Codex): add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ ); … Read more