Reply To: Carousel in angular with ngFor

#10034800
ritn
Participant

Hello Rodrigo, thanks for that, looks like it works. One small issue is that I am seeing double arrows in the nav, this was not happening when the carousel was being created through the theme:

View post on imgur.com

This is the HTML for the nav, looks like those 2 spans are the extra smaller “<” and “>”.

<div class="owl-nav">
    <button type="button" role="presentation" class="owl-prev">
        <span aria-label="Previous">‹</span>
    </button>
    <button type="button" role="presentation" class="owl-next">
        <span aria-label="Next">›</span>
    </button>
</div>

Thanks!