Reply To: Hide Video Controls and Loop

Support Forums Azul – WP Plugin Hide Video Controls and Loop Reply To: Hide Video Controls and Loop

#4072
CreaboxThemes
Keymaster

Hi fBrian, you have to modify two files:

1. Hide the controls: Open the file style.css in the folder css and add the next code to hide the controls:

#big-video-control-container{
	display: none !important;
}

2. Loop the video: You have to modify the main file index.html, when the video background is set. Change the next line from this:

var BV = new $.BigVideo();

to this:

var BV = new $.BigVideo({doLoop: true});

Regards