Carousel Module - Not Working on Landing Pages

Hello guys! How are you?

I need help with the next module:

That shows the client’s logos as a slow carousel with smart rules. You can check it out on the next url: https://driv.in/

Any way, i can’t make it work on Landing Pages, where it works li ke this. You can check it out on the next url: https://contacto.driv.in/es/go-to-market-demo
Does anyone knows why this is happening only on the landing pages?

Here is the design manager build:

Thanks!

Hi @DEsteva,

seems like you’re missing the

<div class="item">...</div>

class.

Try this code

<div class="owl-carousel">
 {% for single_image in module.image_group %}
 <img class="item" src="{{ single_image.src }}" alt="{{ single_image.alt }}" loading="lazy">
 {% endfor %}
</div>

Best,

Anton