1/*
2 Theme Name: WPB Child Theme
3 Theme URI: https://www.wpbeginner.com
4 Description: A Twenty Thirteen child theme
5 Author: WPBeginner
6 Author URI: https://www.wpbeginner.com
7 Template: twentythirteen
8 Version: 1.0.0
9*/
10
11@import url("../twentythirteen/style.css");
12
13.site-title {
14padding: 30px 0 30px;
15}
16
17.site-header .home-link {
18min-height: 0px;
19}
20
21.navbar {
22background-color: #e8e5ce;
23}
24
25.widget {
26background-color: #e8e5ce;
27}
28.site-footer {
29background-color: #d8cdc1;
30}
31.site-footer .sidebar-container {
32background-color:#533F2A
33}
34
1/*
2 Theme Name: Twenty Fifteen Child
3 Theme URI: http://example.com/twenty-fifteen-child/
4 Description: Twenty Fifteen Child Theme
5 Author: John Doe
6 Author URI: http://example.com
7 Template: twentyfifteen
8 Version: 1.0.0
9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
12 Text Domain: twentyfifteenchild
13*/
14
1add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
2
3function enqueue_parent_styles() {
4 wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
5}
6
1add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
2function my_theme_enqueue_styles() {
3 wp_enqueue_style( 'child-style', get_stylesheet_uri(),
4 array( 'parenthandle' ),
5 wp_get_theme()->get('Version') // this only works if you have Version in the style header
6 );
7}
8
1/*
2Theme Name: Twenty Fifteen Child
3Theme URI: http://example.com/twenty-fifteen-child/
4description: >-
5 Twenty Fifteen Child Theme
6Author: John Doe
7Author URI: http://example.com
8Template: twentyfifteen
9Version: 1.0.0
10License: GNU General Public License v2 or later
11License URI: http://www.gnu.org/licenses/gpl-2.0.html
12Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
13Text Domain: twenty-fifteen-child
14*/
15