Monkette Profile Topics Started Replies Created Engagements Favorites Forum Replies Created list of topics you have created till now. MonketteParticipant 26 December 2014 at 15:31 Posted in : Enqueue styles in child theme #17983 Thanks. I also got the enqueue method working, if anyone wants to use it: add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_uri(), array( 'parent-style' ) ); } Viewing 1 post (of 1 total)