Hi Jarret
Thanks. I tried that and it hasn’t worked I’m afraid. See: https://bdcr.org.uk/about/
Any other ideas? Here are the full contents of functions.php:
<?php
/**
* Twenty Seventeen Child Theme functions
*
* @link https://developer.www.ads-software.com/themes/basics/theme-functions/
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* Change the minimum screen size to use the video header
*/
function cyberium_video_header_pages( $active ) {
if ( is_page() || is_single() ) {
return true;
}
return false;
}
add_filter( ‘is_header_video_active’, ‘cyberium_video_header_pages’ );
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
$parent_style = ‘twentyseventeen-style’; // This is ‘twentyseventeen-style’ for the Twenty seventeen theme.
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),
wp_get_theme()->get(‘Version’)
);
}