I have encountered an issue while coding a website for a friend's company. He requested a video carousel to be added to his existing site, so I incorporated links and scripts for Bootstrap in order to create a gallery for his products and a carousel to feature videos from events.
The problem arises as the carousel is not displaying as intended and seems to be malfunctioning. Despite my efforts in troubleshooting and researching online for solutions, I have been unable to rectify the issue. Hence, I am reaching out here for any advice or insights.
Below is a snippet of the code for the carousel:
<!-- Start of Video Section -->
<section id="videos">
<div class="container-fluid col-8 offset-2">
<div id="carousel_nuevo" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators" style="margin-bottom: 50px;">
<li data-target="#carousel_nuevo" data-slide-to="0" class="active"></li>
<li data-target="#carousel_nuevo" data-slide-to="1"></li>
<li data-target="#carousel_nuevo" data-slide-to="2"></li>
<li data-target="#carousel_nuevo" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<video width="900" height="600" border="5" controls="controls">
<source src="https://mdbootstrap.com/img/video/forest.mp4" type="video/mp4">
</video>
<div class="carousel-caption d-none d-md-block" style="margin-bottom: 60px;">
<h3 class="h3-responsive">Video 1</h3>
</div>
</div>
<!-- Other Carousel Items -->
<a class="carousel-control-prev" href="#carousel_nuevo" role="button" data-slide="prev" style="margin-bottom: 60px;">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel_nuevo" role="button" data-slide="next" style="margin-bottom: 60px;">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<!-- End of Video Section -->
I am utilizing a default carousel similar to what can be found on W3Schools and other platforms.
https://i.sstatic.net/N3ejp.jpg
Currently, the carousel does not seem to be loading correctly and the additional videos are not being displayed. Any assistance would be greatly appreciated. Thank you.