I modified the bootstrap 4 carousel code by splitting it into two columns. This was necessary because I wanted to move the carousel indicators outside of the carousel itself, rather than having them inside as per the default setup.
While the image-changing aspect of the carousel is functioning correctly, the issue lies with the "active" class not transitioning to any other list item.
HTML
<div class="row mx-0">
...
</div>
</div>
</div>
CSS
.carousel-inner,.carousel,.carousel-item,.container#carousel-container,.fill {
height:100%;
min-height:700px;
width:100%;
background-position:center center;
background-size:cover;
}
.slide-wrapper{display:inline;}
.slide-wrapper .container{padding:0;}
/*------------------------------ vertical bootstrap slider----------------------------*/
.carousel-inner> .carousel-item.carousel-item-next ,
...
#carousel-indicators li.active i{
color: var(--primaryColor);
}
In order to enhance user experience on my page, I simply want to adjust the color of the active indicator dot.