While working on one of my niche websites yesterday I noticed that background videos embedded in revolution slider were not working. I hadn’t changed anything or made any new server configurations. The videos were simply not autoplaying. Two days ago everything was working fine. I’ve incorporated 12 or so videos into separate sliders across as many pages. It’s an important feature that I can’t afford to have broken. The only thing that displayed in place of the video was the youtube generated thumbnail (as selected for a cover in revolution slider).
My immediate thought was that this was a youtube issue. Viewing these pages in MS Edge confirmed that it was not. The videos played as expected. Okay so perhaps Chrome is to blame? I started to do some research on the matter and discovered Google’s autoplay policy is changing. According to their new guidelines, muted videos will still autoplay. All of my videos were marked as muted and thus shouldn’t have been affected. I thought maybe revolution slider wasn’t passing the correct arguments. So I added mute=1 and autoplay=1 to the arguments field in source settings of the slider. No change. I kept researching hoping to find a solution.
Checking developer tools for errors
I probably should have done this sooner. Looking for errors or warnings in developer tools can lead you on the right path to correcting a conflict or problem in Chrome. There was an error that I had never experienced before, and it was present on all of my video pages:
Now I was back to thinking that this was a policy change in either Chrome or Youtube. So I googled that exact error message and came across this post from a user who was experiencing the same error. It looks like he resolved his own issue. Another user who had the same problem also chimed in confirming his fix. It had to do with a css setting for visibility: hidden on one of the video containers.
Now according to Google, Chrome 67 has been released since May 29th. I didn’t have an issue until a couple days ago. Perhaps a minor update in version 67 caused the problem? I even downloaded the beta for Chrome 68. No dice, the problem still persisted. To make matters worse that error message I was getting disappeared completely in the beta! I felt like I was back to square one.
Fixing my revolution slider background video problem
The only thing left for me to do was to start messing around in developer tools by changing CSS on-the-fly. I worked my way up from the cover thumbnail container applying visibility: inherit !important; to each preceding parent container. My stubbornness and hard work paid off. I immediately saw my video playing. It had been playing this whole time. It appears it was hidden behind the cover thumbnail.
Applying the below css code sitewide resolved the issue on all of my video pages:
visibility:inherit !important;
}
That’s all there is to it. Hours of diagnosing and troubleshooting and a simple line of code corrects the problem. Applying this code doesn’t appear to affect other browsers negatively. My videos looked and played just fine in MS Edge. It’s possible an update in Revolution Slider changed something. I doubt it though. It does appear to be a bug (or maybe a feature?) in Chrome. I came across other posts citing display issues with parallax backgrounds in Chrome 67. No pun intended, but perhaps Google is opting for more transparency when it comes to background assets and loading priority.
I’m honestly surprised that awareness of this bug is not more widespread yet. I did come across another StackOverflow post with the visibility fix here. I hope that my fix helps others who are experiencing the same problem. It may seem like a small gripe, but these background videos can be an integral part to a page’s design. In my situation, it is the main focal point, used as informational pieces and to increase user engagement.
UPDATE: 7/20/18 – I’ve noticed a lot of traffic coming to this page over the last few weeks. If you’re having issues with youtube background videos still, make sure Revolution Slider is up to date. In the changelog for version 5.4.8, it is noted that this problem has been fixed. It looks like the visibility property has been set to inherit by default now. If that still doesn’t fix your issue, leave a comment below. I’d love to hear about it!
apparently in the slider revolution changelog (5 december 2018) there’s a vimeo ‘fix’ “5.4.8.1 BUGFIX: Fixed Vimeo Video backgrounds not working properly”.
However, i’ve currently (finally) got things working (thanks for this page!!) using 5.4.8 (June 2018 slider rev version) and the CSS fix as described elsewhere:
.rs-background-video-layer iframe {
opacity: 1 !important;
visibility: inherit !important;
}
PLUS the vimeo arguments (under “source settings”) title=0&byline=0&portrait=0&autoplay=1&autopause=0&muted=1&background=1&loop=100
note the LOOP param
Oh yeah, vimeo can be tricky too. I’ve had to add different parameters to get it to function correctly too. I’m really surprised that the revolution slider team hasn’t addressed these issues more thoroughly. This page still gets a lot of hits, even several months after publishing. Nice to hear that it helped solved your issue!
YES!! IT WORKS!! Thanks a lot 😀
Great to hear! Appreciate the feedback.
Hello..on my site ceste-karlovac.hr first slide is cover photo and video but video dont work..evan not with your code..idk what to do..at microsoft edge it show him and at chrome not..
Hmm, if i had to guess i think chrome is being touchy with your embed parameters. I see the video play button. Setting the iframe z-index to 9999 allows me to click on it. do you have it set to mute in revolution slider settings? Even if there is no sound I believe this setting needs to be applied.
I have same problem and i have added css under custom css section in revolution slider(5.4.6)
.rs-background-video-layer iframe {
opacity: 1 !important;
visibility: inherit !important;
}
but this is not working for me on localhost wordpress.
Please help me.
Thanku
Neha
since it is on localhost, I assume there is no way to share it? Is the video muted?
Thanks, I got the video to finally play. However, I need the video sound to play. How do I get the video to play without it being muted?
Unfortunately, Google rolled out a new autoplay policy that prevents videos from sound playing: https://developers.google.com/web/updates/2017/09/autoplay-policy-changes It seems like the only sure-fire way to have a video with sound load in chrome is to force a user interaction. You might be able to create a separate background music file and load that along with the video.
Thx dude, this worked for me.
Quite weird, it works on chrome on my laptop but it doesn’t play on chrome on my mobile.Firefox(on mobile) is playing it just fine.Any idea how to fix that? I have the latest version of SR.
Check to see if you have the data saver option enabled in settings for chrome mobile. If it is, as i understand it, the video will never play and nothing can be done other than disabling that setting. If that’s not the case, it could be a parameter variable needs to be set. This is for a youtube video and not vimeo right?
Yeah, stupid me, didn’t thought about it at all. It’s playing, once when data saver is turned off. Thanks!
Perfect!
Thank you!! This worked for me 😀
Awesome. Appreciate the feedback!
Thanks dude, this worked. yes. seems like old revolution slider plugin versions has this issue. will update to the latest asap.
Hi, I have the same problem with Slider Revolution in chrome (not in firefox for example). I Have cleared the “caches” (chrome, wordpress, wp-fastest cache….)
I am not an expert, where must I add those code lines?
P.d. The site is https:/www.videographybodas.es
Wow… this has to be the most stubborn case of this issue I’ve come across. I tried messing some with settings in element inspector to no avail. The video works fine in MS Edge, but obviously not chrome. It looks like this slider is contained in an element called q_slider. I’m wondering if it has been modified in some way. One thing I noticed is that the video is vimeo, switching to youtube might help
Try this: For the vimeo parameter string it should read like this – title=0&byline=0&portrait=0&autoplay=1&autopause=0&muted=1&background=1
Also set these values for css:
.rs-background-video-layer iframe {
opacity: 1;
visibility: inherit;
}
Finally got it to work
Hi. Apparently the changes you have suggested do not work. However, thank you very much for the attempt. I can not find any documentation on the internet about a case similar to mine. So I assume it must be some problem of mine, of slider configuration or whatever
Have the same issue. This post was the closest I got to find an answer. Any luck?
I have a client with Version 5.4.8. We added a video to the homepage and everything was working fine last week but then today the video was not visible. Your fix helped me as well! Thanks!
Strange how there was still a problem with 5.4.8. Good to know you got it working again at least!
Same problem here caused by a theme that did not included last updates for slider revolution.
Your solution works like charm for me. Thank you!
Glad it worked! Some people have had mixed results.
I’m having the same problem with the video not playing, but I’m using vimeo where its pulling the video from. On Firefox & Safari it works perfect. But on chrome version Version 69.0.3497.81 it’s not working at all. I’m using Slider Revolution 5.4.8. Any suggestions on fixing this issue? the site is http://robnaimanco.customsoftewaredevelopment.com
I tested on Chrome 68 and it looked fine. Just updated to the exact version that you have (69.0.3497.81) and it works fine too. Did you resolve the issue? I’m guessing you tried viewing the site in incognito mode to rule out any conflicts?
So I got it to work by removing the embedded video and adding the video as a layer. It was a quick fix but working for the meanwhile.
I’ve tried your fix and unfortunately I can’t get it it to work. The only browser in which the videos will play is in Chrome Beta. How strange is that? I’m running 5.4.7 and unfortunately don’t have a way to update to 5.4.8. After scouring through developer tools – I can’t seem to find an error or quick CSS fix. Appreciate you writing up a post about this issue. URL is btlivin.com/studio if want to take a look or have any offhand guidance.
Were you able to fix it? I show the video playing in both standard Chrome and MS Edge. I see that you set the visibility to the iframe element and the parent element to inherit.
Hi still have the problem. I update plugins. Slider Revolution is version 5.4.8. Any ideas ?
http://www.bigbiketours.com
Try this code in your css:
.rs-background-video-layer iframe {
visibility: inherit !important;
}
it fixed it for me in developer tools. The source code also shows Revolution slider 5.4.7.4
The CSS fix didn’t work for me, but looking at Chrome developer I noticed there was a domexception “tainted canvases may not be exported” error and it turns out my CDN was interfering with the background video, but only in Chrome. So just in case the above mentioned fixes don’t work for you, if you are using a CDN this may be where the problem lies. Disabling the CDN fixed the issue.
Thanks for sharing this! It’s strange how Chrome seems to be the only browser with issues
I tried the CSS fix, no help. Seems that only upgrading to the latest version of RS fixes the issue. Odd that this problem seems confined to Chrome.
Thanks for your feedback. I know there are many variables to consider. The wordpress theme and how it integrates with Rev Slider. The version of revolution slider being used. For people that can’t upgrade, I’d be willing to take a look at the source code with a provided url. I honestly didn’t expect to have so much traffic coming to this page. It’s a bigger issue than I anticipated.
Hi! I have this exact problem, and I cannot get it fixed, theme developer updated the slider revolution plugin – so i installed that, and still no luck – I tried poking around in developer tools, but everything was already set to :inherit. — any ideas? https://www.cvpphoto.com – works in firefox, safari but not chrome.
Did you fix the issue? I see it working fine in the latest version of Chrome. Looks good in MS Edge too. Have you cleared your browser cache or do a hard refresh?
Hi, yes I fixed just now by purchasing an individual license for slider revolution and bypassed the theme developer. – The theme developer claimed they updated to the latest version, but they didn’t, once I updated directly, it worked perfectly. Your article helped me get to the bottom of this mess, I really appreciate it as the theme developer had no idea!
Fixed my issue by cleaning up my video embed code and then reworking the arguments. https://help.vimeo.com/hc/en-us/articles/360001494447-Using-Player-Parameters
Still, Didn’t solve my problem, i have the same trouble around here =(
Would you mind sharing the URL you are having the problem with? I could take a look and see if I notice any issues
https://www.dlc.pt/
Did you fix it? I see the typing video playing in the background. Additionally, you are running an older version 5.3.1.5 (dec. 10th 2016!). You should really upgrade to current version. Lastly you’ll want to get some mixed content errors sorted out for your https (SSL). See the results here: https://www.whynopadlock.com/results/3b344c3f-2828-4226-ab63-b4ecbab4fe11 fixing that will give your website that green padlock
I have done everything listed below and plugin is up to date but still issue exist. The video will show on click but wont play. Any ideas?
If you’re seeing the click button or are able to interact with it, that leads me to believe it is a parameter issue. Does the video have sound? Make sure it is muted as Chrome will not autoplay (for the most part) videos with sound. Is the video hosted on youtube or vimeo? If you want to send me a message through my contact form with the URL I could take a quick look for you.
Ah! I didn’t have it on mute. Thank you so much for responding!
Hello sir,
I try the same method which you described but it does not working well for me please check the link and let me know if I am doing something wrong. I use a youtube embedded video as the main background:
website link:https://houstondesignconstruction.com/
Sometimes chrome play the video but when I reload the page again it does not play and on opera, it does not play
I’m getting the same results. The video sometimes starts and sometimes doesn’t. I noticed that there were a lot of jquery errors in Chrome’s developer console. You’ll want to get that fixed asap. They appear to be theme related. Also, your youtube parameters seem to be inconsistent. for instance, in the string you have rel=0;; get rid of the ;; and replace with & the same thing with the origin tag after your domain. remove the ; and replace with &
Hey … I’m utilizing Revolution Slider for a few of my sites. They are HTML 5 videos and initially they all were auto playing via mobile.. and then it just stopped. They are all muted and “plays inline” still no change…
Do you have any thoughts?
If it’s working fine in desktop but not on mobile (I’m assuming android?) then I would take a look at the browser settings. For chrome/android there are instructions here: https://bit.ly/2GnRqrf to check autoplay. Maybe it became disabled? If you’re talking about iPhone, I’m not quite sure.
Ryan, I have installed the new version of 5.4.8.3 still wont work. Here is where I’m dumber than a bucket of rocks. You say change visibility to inherent. Well, just where the heck is that at. I have beat my brains looking for it. my website is visualhandshake.com
I just checked. It looks like you solved the problem? I’m showing the video playing in Chrome, Edge, and Android.
Wow, it’s working, i am so grateful , thank you for the css
.rs-background-video-layer iframe {
visibility:inherit !important;
}
I’m glad it helped solve your issue!
Confirmed working for Slider Revolution 5.4.6.3.1 , thanks for sharing
You’re welcome!
Hello, I appreciate that you have shared the solution, since the search for a problem and the solution takes a lot of time and work. Greetings.
Hi, I followed several guides here to no avail. Weirdly, this works fine for Edge and any mobile browser but not firefox and chrome on the desktop. The video plays the first frame http://tempus-recruitment.co.uk/
I have some other sites that all suffer the same fate. Ideas?
Very strange. It works in chrome normally for me, but when I view in the incognito mode it’s just a black screen. I get this warning in developer’s console: “Unmuting failed and the element was paused instead because the user didn’t interact with the document before. https://goo.gl/xX8pDD” So if I had to guess, it’s something to do with the video parameters. Are you certain that the mute function is set correctly?
Ah right! That actually worked when I allowed sound on my browser. I feel like I’ve taken a jump forwards to understanding the issue now. So, how do I disable the sound entirely. Its not a thing. Sorry, I’m more front end so need a bit of help. You are a star
In the Source Settings for your slide make sure you have the Mute Toggle option set to on. You may also need to play around with the arguments field too. For instance, I have this in my arguments field: hd=1&wmode=opaque&showinfo=0&rel=0; and it works fine for me. However, those variable settings are for YouTube. If you’re doing Vimeo, Self-Hosted, or some other video service you’d need to consult their help guide for setting a mute parameter.
Hello i’m helping a ONG website, and the video doesn’t reproduce in chrome, in Edge it does! I already tried your code and this one.
.rs-background-video-layer iframe {
opacity: 1;
visibility: inherit;
}
But still didn’t work, the slider revolution version it’s 5.2.5.4, apparently is hasn’t been activated, and since it an ONG i’m not sure if they can afford to pay a license to fix this bug..
This is the website: http://www.asociacion-piel.org.ar/web/
Hope you can help,
Thanks in advance,
Matias.
I apologize for the delayed reply. I just checked in Edge and Chrome. Looks like the video is playing in both of the browsers. I’m assuming you were able to fix it? I do know that Microsoft will be releasing a new version of Edge based off of the Chrome source code. This should hopefully help with issues like this and compatibility.
Nope, i could not fix it.. when I go the website from wordpress it works, when I press F5 or go to incognito (Ctrl+shift+n, I don’t know if it well wrote) it doesn’t work..
Wow… you definitely have one of the more stranger cases of a video not playing in Revolution Slider. If I put my ad blocker on, the video sometimes loads. Otherwise, in incognito mode, I just see the play button which cannot be clicked. I feel like it might be a youtube parameter problem. Have you tried uploading the video to Vimeo and seeing if that works?
Nope, I will try it now… I hope it works, otherwise I have no idea :/ Thanks
Hello! I manage to make it work… the thing is that it doesn’t loop and I have it activated “Loop, Slide doesn’t stop” so, how can I fix it?
The web is this one: http://www.asociacion-piel.org.ar/web/
I manage by uploading the video in Vimeo and with this magic code in “Arguments Vimeo”: title=0&byline=0&portrait=0&autoplay=1&autopause=0&muted=1&background=1
The bad thing if someone change “arguments” every time you enter it dissapears so you have to copy the magic code everytime you make a change on the slider!
I’m getting this error: “Vimeo Froogaloop Api Could not be loaded !” So it’s not loading for me. However, I’m wondering why someone would change the arguments at all once they are set? Are you the only one who has access to the website. In my experience, the loop button in Revolution Slider isn’t always reliable and parameters are best set with arguments. I would limit access to others if possible.
I’m the only one, i don’t know why it changes, i just exit WP, enter revslider and the arguments were back to normal… Maybe the video isnt visible outside my country I don’t know u.u i guess I have to google how to fix loop in revslider u.u
Hmm sorry to hear that. Usually, when that sort of thing happens there is a conflict. Try checking with Chrome’s developer tools to see if any errors pop up on the site or the admin dashboard. I know some plugins can cause issues with saving settings. Although I’ve never had a problem with revolution slider settings it’s typically when making changes to posts that it happens to me.
WORKS FOR ME
GIANT thank you!
Glad to hear you found it helpful!
I don’t know exactly where to put the codes. Need help.
Your WordpPress theme should have a section for custom CSS. that’s where the iframe code show go.
Thanks
I am using rev slider youtube video on homepage but video is not working on chrome, Please help. Here is the linkhttp://thesattva.com/
Looks like there is a conflict of sorts. I don’t even hear the music when I hit play on chrome. If you look at developer’s console, there are a few warnings that pop up. One relates to youtube and the other has to do with Google Maps API. Try to resolve those and see what happens.
Actually try this CSS code :
.tp-mask-wrap iframe {
visibility: inherit !important;
}
Your iframe for the video was still being hidden. That made it work for me
This css is not working for me, when i check source code, there is no iframe present in the source
I just checked and see that you have the css code implemented. It works just fine for me. The video plays in chrome and sound can be heard. If you’re talking about autoplay, then that’s a different problem altogether. However, autoplay wasn’t enabled on other browsers anyways.
No, for me video is not visible at all. I am using chrome, Please check again as i have made a few updates. Video starts and stops after a few seconds. Please help
I checked in MS Edge and the video also stops after a few seconds. In both Edge’s and Chrome’s developer tools there is an error message saying that the Google Maps API key is included multiple times and may cause issues. I would resolve this problem and then check again.
Hi,
this article is quite helpful although it doesn’t fix my issue.
I found this almost working:
.tp-mask-wrap iframe {
visibility: inherit !important;
}
What I mean with “almost” is that now the video plays only if you click on another tab first or the inspector.
Not sure what’s going on, It would be great if you could check it out https://urbanistarchitecture.co.uk/reviews/
There’s a line in your code that is causing the issue:
.caption.fullscreenvideo iframe, .caption.fullscreenvideo audio, .caption.fullscreenvideo video, .tp-caption.fullscreenvideo iframe, .tp-caption.fullscreenvideo iframe audio, .tp-caption.fullscreenvideo iframe video {
width: 100% !important;
height: 100% !important;
display: none;
}
For some reason display:none is in effect. Not sure why that it is but it needs to be overriden. This works for me:
.tp-mask-wrap iframe {
visibility: inherit !important;
display:block !important;
}
Thank you so much, the video plays now although when I turn the volume on it gets blocked, again it’s just something happening on Chrome. Do you have any suggestions?
Thanks again Ryan!
Thank you Ryan, it worked although now I have an issue with audio, whenever I click on the volume icon to turn it on the video stops, again it’s just something happening in Chrome. Do you have any suggestion?
Thanks you so much!
You’ll want to check chrome’s developer tools to see the errors that are happening (ctrl+shift+i). You’ll probably see Red x’s (errors) and yellow exclamations (warnings). One of the warnings says this:
Unmuting failed and the element was paused instead because the user didn’t interact with the document before. https://goo.gl/xX8pDD
I found this thread here: https://stackoverflow.com/questions/51131597/wordpress-revolution-slider-unmuting-failed-and-the-element-was-paused-instead which might offer some help. Every situation is different, however, and I’m not sure what other advice I could give.
I have been using Slider Revolution for a while now and I just realized that the HTML5 videos are not displayed in Firefox of desktop PCs (they work perfectly fine in Chrome, Safari, and Firefox mobile). I have tried replacing them with Youtube videos and they work just fine on desktops as well but due to the nature of the business (adult), I really can’t upload the videos I want to Youtube and draw them from there. I used the CSS you suggested but it doesn’t work for me. I also tried experimenting with other CSS setting but nothing. I… Read more »
Strange how YouTube is fine but not HTML5 videos. I did see this blog post from Mozilla where they’ve implemented their own autoplay policy: https://hacks.mozilla.org/2019/02/firefox-66-to-block-automatically-playing-audible-video-and-audio/ Without seeing the website it’s hard for me to troubleshoot. I understand it’s adult in nature, but if you want to email me ryan@precisiondigital-llc.com I can take a quick look.
Worked like a charm for me 🙂
Good to hear! I’m still surprised at the amount of traffic this page gets a year later. Thanks for your feedback.
Hello, I’ve recently updated Slider Revolution from v6.0.1 to v6.1.5 and my site lost the looping of the youtube background video. I’ve found the loop setting and have turned it back to “on” which fixed the problem. But I have another problem where the background video dissapear when I switch to another tab and then come back to the tab with the site I’m working on. This problem occurre immediately when switching tabs on mobile and tablet devices and it doesn’t matter if the video have not reach the end of it’s first loop. On a desktop it takes some… Read more »
I’ve made that site about 2 years ago and have forgot that I’m not using youtube video for background. Instead it’s a video layer because I want to loop only one video. Here is the site goldenskybirds.com Somehow I’ve managed to fix the problem on a desktop. I’ve found that the setting to switch the loop to “ON” is not memorized. When I exit the slide editor and reopen the slide the loop setting is back ot “OFF”!? So I’ve played a bit with the settings by trying to switch all settings to “ON” and then to “OFF”, finaly left… Read more »
So I just tested on of one my websites and updated it to the latest version of Slider Revolution v. 6.1.5. I have a layer with the background set to HTML5 video that is self-hosted. When switching between tabs on mobile and desktop the video does resume. You mentioned having a video layer, is it not set to a background video? If it’s an actual layered video that might be the problem. I do have my background video set to loop media which is working. FYI, I updated from an old version 5.(something) to 6.1.5. I was worried that the… Read more »
i have some problem audio is not working in rev slider can you please help?
On a site I am working on it has Revolution 6.2.1 and I am using Chrome Version 78.0.3904.108. I was changing out a background video and on Chrome it doesn’t appear although it does on Safari. Any thoughts? jonesdigitalprintcenter.com Steve
I see a placeholder page on the site currently. Did you recently change it? Checked the code for Revolution Slider and didn’t see it in there either.
AWESOME! Thank You Ryan. I was having this problem where I troubleshooted it for hours but no luck. Then I found this resolution you provided. That you very much. The video is now playing on the website.
Wow! That’s great to hear. I never would’ve expected this to still be an issue 2 years later.
Hi Ryan, I wonder if you can help me out. Today I noticed the video has stopped playing. I implemented your CSS and it didn’t resolve my issue. I have updated Slider Revolution to its latest version of 6.2.22 and that didn’t resolve my issue either. Here is the link to my site where the video resides: https://unstoppablefoundation.org/programs/sponsor-a-village/
Have you made some changes since you posted this message? From what I can see, you have the video set to play on trigger (watch video). Looks like auto play is disabled on Chrome and MS Edge. I know Chrome can be a little tricky to play videos with audio and sometimes require user interaction.
I’m having issues at the moment with the 6.2 version. I have a video background coming from Youtube and it isn’t playing on mobile. Or if it does actually play, when my phone goes to sleep and I open it back up, it is blank. It’s very finicky on different mobile browsers too. I tried to input your css, but I don’t think it worked for me. Any suggestions? I’m unable to update to 6.3 because it came with the theme and the author has to do that. :/ the site is: http://www.electricavenu.com. It is a site I help manage… Read more »
Hi Rachel, I’m encountering the same issues you described on my Android phone. It’s hard to troubleshoot without access to the website on my phone (on desktop I can use developer tools). The first thing I noticed is that the slider is cut off on mobile. I’d recommend having it fit to width which will make it smaller (as well as the text) but is better than having the text and images cut off. Correct me if I’m wrong but I believe you have a placeholder image in the background before the video loads? Have you tried removing that image… Read more »
Dear Ryan, We have the known issue with video in the Revolution slider. We have a Vimeo video in a slide, on the homepage of http://www.ateliermarly.be . In Safari on my MacBook Pro (2019) it works fine, on mobile (iPhone6S) in Safari I only see the cover image but I hear the sound of the video playing when I toggle the sound on with the button we’ve made. In google chrome on my desktop, it also plays normal, except when I click the sound on/of button then it stops playing and displays the cover image. Could you help us out?… Read more »
I just took a look at the home page and it seems like you just have an iframe embed of the video? I didn’t see the slider at all.