Monkette

Forum Replies Created

list of topics you have created till now.

  • Monkette
    Participant

    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)