Hi guys, I am using bootstrap carousel and I have some problem with the slide display.
I can't switch from one slide to another
In the code I have commented the <div class = "item active">
This way the video appears to me as desired, fully functional.
If I remove the comment the video continues to work but is displayed in the lower part of the "container"
In both cases the buttons to scroll the slides do not work.
Could it be a problem that I have inserted a video instead of an image?

<div class="carousel-inner">

                    <!--<div class="item active">-->
                        <div class="video-container">
                        <video playsinline autoplay muted loop>
                        <source src= "images/video.mp4" width="400" height="200" type="video/mp4">
                        </video>

                        <!-- Content -->
                        <div class="container"> 
                            <div class="row blurb scrollme animateme" data-when="exit" data-from="0" data-to="1" data-opacity="0" data-translatey="100">
                                <div class="col-md-9">                              
                                    <span class="title"></span>
                                    <h1>Prova video</h1>    
                                    <div class="buttons">                               
                                <a href="" data-vbtype="video" class="venobox btn btn-default">
                                    <i class="material-icons">play_arrow</i>
                                    <span>Guarda il video</span>
                                </a>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

Thanks to those who want to help me

From what I can see, you're short a closing <div> tag.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.