Hi,
I’m trying to transfer my store design from Narrative to Dawn theme. Now, I added a custom section to the Narrative theme with a reviews/testimonials-slideshow for my home page. It used to look like this (alternating between different reviews every 5 sec):
The code for this was:
{% if section.blocks.size > 0 %}
{% for block in section.blocks %}
{% if block.settings.heading != blank %}
## {{ block.settings.heading | escape }}
{% endif %}
{% if block.settings.quote != blank %}
{{ block.settings.quote }}
{% endif %}
{% if block.settings.author != blank %}
{{ block.settings.author | escape }}
{% endif %}
{% endfor %}
{% else %}
{% include 'no-blocks' %}
{% endif %}
{% schema %}
I now copied this code to a new section in my dawn code and was able to then add the testimonials to my homepage, however it just sums up the reviews without a slideshow + everything is stuck on the left side of the page (not centered), like this:
Any help to what to adjust in the code so this wouldn’t happen? Thank you so much.
Mathias
