Child style.css
in Other
So, after we're done tweaking a site, we follow these direction:
Ok, cool.
But once I open up /home/storaged/public_html/wp-content/themes/betheme-child/style.css shouldn't I see it "pulling" from the parent theme's css?
Which, in the case of Be Theme, if the above directions were followed, would be in the file named style-static.css.
In other words, when I open up any other child folder's css (we'll use Theme.co's X Theme as an example) , I see the following line in the child style.css
@import url( '../x/framework/css/site/stacks/integrity-light.css' );
I don't seem to find a similar line in the Be Theme's child style.css. So why is that?
Comments
as we read, everything is done properly. If you will have a look at http://codex.wordpress.org/Child_Themes you can read very important notice:
Note that the previous method was to import the parent theme stylesheet using @import: this is no longer best practice. The correct method of enqueuing the parent theme stylesheet is to use wp_enqueue_script() in your child theme's functions.php.