I have created the style.css and functions.php and uploaded them into
/public_html/wp-content/themes/twentythirteen/twenty-thirteen-child
but not sure whether I have added all required info .. anything wrong or missing? Geoff
1. style.css
/*
Theme Name: Twenty Thirteen child
Theme URI: https://geoff-ideas.co.uk/twenty-thirteen-child/
Description: Twenty Thirteen Child Theme
Author: Geoff Cox
Author URI: https://geoff-ideas.co.uk
Template: twentythirteen
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: increase size of space for video background
Text Domain: twenty-thirteen-child
*/
.site {
max-width: 100%;
width: 100%;
}
.vidbg-container {
overflow: visible !important;
}
2. functions.php
<?php
function theme_enqueue_styles() {
$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
?>