Hi @gazette-gal,
It looks you’ve copied/pasted the contents of the parent theme’s style.css file beneath the first part of your child theme’s style.css file. That’s not necessary as the parent theme’s CSS will automatically be loaded with the child theme.
Only the following is needed at the very top of your child theme’s style.css file:
/*
Theme Name: Pique Child
Description: Pique Child Theme
Template: pique
Text Domain: pique-child
*/
Any custom CSS that you wish to add would then be added beneath that top section.
In addition to the style.css file, your child theme should have a functions.php file with the following code:
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
After you’ve updated both the child theme’s style.css and functions.php files, you should be able to activate it via Appearance > Themes.
Can you take a look through the above and let me know when you’ve updated your files?