Hello,
Thank you very much for answering.
Although, even with your advice I still couldn’t get what I wanted (overlay with text with background); plus other things won’t work as I need (the local ACM video has a play button on the centre etc.). So I tried a different approach. I just added this code (see below) to a module and a tiny bit of CSS and it all worked like a charm. It is probably quite stupid solution, but I am not a developer and have zero knowledge in codding, so that was the best I could do. In any case, it works perfectly.
But I wanted to take a bit of your time again. Can you please tell me, would such code make some “wrong” things on site, as I don’t use your ACM Slideshow module anymore, but I kept the syntaxes like <div class="acm-slideshow acm-owl"> just because it was faster to call the existing CSS. So my question is: what would you suggest would be best for the site – to leave this code as it is, or to rewrite it, creating my own names for CSS styles and placing those CSS in custom.css?
My code in module:
<div class="acm-slideshow acm-owl">
<div class="owl-carousel owl-theme owl-loaded owl-drag">
<div class="owl-item" style="width: 100%">
<div class="item">
<div id="video-bg">
<div class="video-wrap">
<div class="video-container">
<video preload="true" autoplay="autoplay" loop="loop" volume="0">
<source src="images/joomlart/media/video.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
<div class="slider-content">
<div class="slider-content-inner">
<div class="title">
<h1>Thousand of Homeless are waiting for help!</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
I am asking because I want to be sure I didn’t do something bad, which will cause site to load slowly or crush, or whatever.
Best regards.