Hi all !
I need your help please, I added quote reviews and it display like a list and I want it to look like a carrousel, how can I edit the code to do it ?
I used that code:
{{ section.settings.title | escape }}
{% include 'icon-quote' %} {% if block.settings.quote != blank %}{{ block.settings.quote }}{% endif %} {% if block.settings.author != blank %} {{ block.settings.author | escape }} {% endif %}
{% if section.blocks.size == 0 %}
{% include ‘no-blocks’ %}
{% endif %}
{% schema %}
{
“name”: “Testimonials”,
“class”: “index-section”,
“max_blocks”: 9,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Testimonials”
}
],
“blocks”: [
{
“type”: “quote”,
“name”: “Testimonial”,
“settings”: [
{
“type”: “richtext”,
“id”: “quote”,
“label”: “Text”,
“default”: “
Add customer reviews and testimonials to showcase your store’s happy customers.
”},
{
“type”: “text”,
“id”: “author”,
“label”: “Author”,
“default”: “Author’s name”
}
]
}
],
“presets”: [
{
“name”: “Testimonials”,
“category”: “Text”,
“blocks”: [
{
“type”: “quote”
},
{
“type”: “quote”
},
{
“type”: “quote”
}
]
}
]
}
{% endschema %}
It looks like this
And I want it to look like this
Store url :https://prettypleaseatelier.com
password: Naomi
Thank you for your help

