I asked this question here (https://theme.co/apex/forum/t/after-a-child-theme-is-made-how-can-i-connect-another-child-css-file/18799)
and the answer they gave me worked:
function child_enqueue_styles() {
// enqueue child styles
wp_enqueue_style('child-theme', get_stylesheet_directory_uri() .'/cta-bar.css', array());
}
add_action('wp_enqueue_scripts', 'child_enqueue_styles');
So that answer let me add another css style sheet to my child theme.
But I want to know how I can add another one now? As me trying this did not work:
function child_enqueue_styles() {
// enqueue child styles
wp_enqueue_style('child-theme', get_stylesheet_directory_uri() .'/cta-bar.css', array());
wp_enqueue_style('child-theme', get_stylesheet_directory_uri() .'/eleg-btns.css', array());
}
add_action('wp_enqueue_scripts', 'child_enqueue_styles');