*/
The only required lines above are the theme name and Template. The template line indicates what the parent theme is, so if we were using a theme called FitPro, we would put Template: fitpro. (It’s all lowercase with no spaces because it’s actually the name of the theme folder)
The next thing you have to do is import the parent theme stylesheet. Add this line underneath the theme info:
@import url("../designfolio/style.css");
That imports all of the parent theme styles. You are then going to add more rules below it, customizing the theme.
Make sure no CSS rules are above this import rule. Here it is together with a first sample css rule:
123456789101112131415 | /* |