1. Make sure your folder structure is correct.
themes
> glossy-stylo
> glossy-stylo-child
2. Make sure your child theme is activated as your main theme
3. When you load the site you’ll notice your style sheet is loading from the parent theme not the child theme.
href=”http://ohholynightlyrics.com/wp-content/themes/glossy-stylo/style.css?ver=3.7.1″
It should be
href=”http://ohholynightlyrics.com/wp-content/themes/glossy-stylo-child/style.css?ver=3.7.1″
I’m using a child-theme successfully using this at top of my child style.css
/*
Theme Name: Glossy Stylo Child
Description: Child theme for the Glossy Stylo theme
Template: glossy-stylo
Version: 0.1.0
*/
/* import parent theme style */
@import url(“../glossy-stylo/style.css”);