Hi All,
My slideshow currently aligns text and button assets to the right as per the image below.
With this as the slideshow code (obviously CSS isn’t here)
{% if section.blocks.size > 0 %}
{% for block in section.blocks %}
{% if block.type == "slideshow" %}
{% if block.settings.block_banerimage != blank %}
{% else %}
{% endif %}
{% if block.settings.block_subtitle != blank %}
{{block.settings.block_subtitle}}
{% endif %}
{% if block.settings.block_title_top != blank %}
### {{ block.settings.block_title_top }}
{% endif %}
{% if block.settings.block_title_top2 != blank %}
### {{ block.settings.block_title_top2 }}
{% endif %}
{% if block.settings.block_buton != blank %}
{{ block.settings.block_buton }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
I’ve attached full code in separate files below. This code seems to apply the same settings to each slide in the slideshow as it iterates through the loop. What I’d like to do is set the alignment of the Text/Button assets on each slide - or in much more basic terms - leave as-is in Slide 1, Align Left in Slide 2.
I already have the code for Slide 2, (slideshow v1 attached) - but I’m having difficulty editing the .liquid to sub in that code when I want it. Any help you can offer would be much appreciated.
Thanks,

