i'm using PrimeNG v9 in angular project,
when i switsh to responsive mode, i can't click to the button inside my carousel,
everytime i clicked i get the next item in the carousel.
there is any solution to this problem ?
this is my HTML content :
<p-carousel [value]="services" [numVisible]="3" [numScroll]="1" [circular]="true"
[responsiveOptions]="responsiveOptions">
<ng-template let-service pTemplate="item" >
<div class="img-bg2">
<img src="{{service.url}}" class="bg-img" />
<div class=" zero" [ngStyle]="{'background-color': service.bgColor }"></div>
</div>
<div class="content content2">
<h4>{{service.title}}</h4>
<p>
{{service.body}}
</p>
<a routerLink="{{service.goTo}}">
EN SAVOIR PLUS
</a>
</div>
</ng-template>
</p-carousel>
you can test it in primeNg site :
- Activate responsive mode
- try to click the button inside