I’m using the MyStile theme for a new site. I’m trying to create a child theme so I can modify the theme and not have my changes overwritten, however once I activate my child theme, the whole styling seems to go from the website all together.
I’m guessing the issue here lies somewhere when it’s calling the parent style.css file.
Here’s what I have in my child theme’s style.css.
/*
Theme Name: Blurred Edge Apparel
Theme URI: http://www.blurrededgeapparel.com
Description: MyStile Child Theme
Author: Blurred Edge Apparel
Author URI: http://www.blurrededgeapparel.com
Template: mystile
Version: 1.0.0
*/
@import url("../mystile/style.css");
I have also copied across header.php and footer.php from the parents theme directory, however still no joy.
Am I missing something here?