Currently, I have incorporated ngx-carousel to display a series of images in carousels. While everything appears to be functioning as intended, I am encountering issues with the toggle buttons below.
The ngx-carousel library from valor Software works seamlessly in their examples on the website. However, within my own project, the toggle buttons are not responding as expected. See the screenshot of the problem (button image).
If anyone has any suggestions or solutions to help me get these buttons working correctly, it would be much appreciated.
<carousel selector="slide" [showIndicators]="true" [interval]="myInterval" [(activeSlide)]="activeSlideIndex" >
<div class="col-md-12 centered">
<div class="carousel-inner ">
<slide class="item animated fadeIn" *ngFor="let offer of currentOffers, let i =index" [ngClass]="{'active':i==0}">
<blockquote>
<ng-container >
<div class="row">
<div class="col-sm-12 align">
<img width="100%" src="{{offer.imageName}}">
</div>
</div>
</ng-container>
</blockquote>
</slide>
</div>
</div>
</carousel>