Tip01
Involved files: functions.php
WordPress Codex writes about this:
The child theme’s stylesheet will overwrite the parent theme’s stylesheet, but chances are you want to include the parent theme's stylesheet. To do this, you need to start the stylesheet with the following line:
@import url("../twentytwelve/style.css");This line must go after the header code and before any other CSS rules. If you put other CSS rules before the @import, it will not work.
Although it is the easiest way to include the parent theme’s stylesheet, but it's not the best. The best way to include additional CSS and JavaScript files is using functions.php file ...continue reading
