cla68
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Seventeen] video header on mobilein order to fix autoplay problem I found useful this post
https://ww.wp.xz.cn/support/topic/how-to-stop-auto-replay-of-video-header/Forum: Themes and Templates
In reply to: [Twenty Seventeen] header unexpected cropplease, could I get a help on this topic? site is http://www.procure4you.it
Thanks!
Forum: Themes and Templates
In reply to: [Twenty Seventeen] video header on mobileHi, thanks. I found a solutin here:
https://ww.wp.xz.cn/support/topic/video-settings-twenty-seventeen-theme/
After creating child them it’s enough to add this code lines to style.css file/* Make sure play/pause button can be clicked on smaller screens */
.wp-custom-header-video-button {
z-index: 10;
}and this code to file functions.php:
/*
* Change the minimum screen size to use the video header
*/
function twentyseventeenchild_video_size( $settings ) {
$settings[‘minWidth’] = 100;
$settings[‘minHeight’] = 100;
return $settings;
}
add_filter( ‘header_video_settings’, ‘twentyseventeenchild_video_size’ );it works!
Forum: Themes and Templates
In reply to: [Twenty Seventeen] video header on mobileHi! Website is http://www.procure4you.it
Problem is: mp4 header does not play on mobile devices (but on ipad is ok)Forum: Themes and Templates
In reply to: [Twenty Seventeen] video header on mobileHi 🙂 any suggestion/help? Thanks