Hey, thanks for the tap in!
@mariotapia why don’t you try using this in an HTML block instead of the Klaviyo default checkout block, and let me know if that worked (you can adjust the styling any way you need to):
<div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;">
{% for item in event.extra.line_items %}
<div style="display: inline-block; width: 200px; vertical-align: top; text-align: left; border: 1px solid #ddd; padding: 10px;">
<img src="{% if item.product.variant.images.0.src %}{{item.product.variant.images.0.src}}{% else %}{{item.product.images.0.src|missing_product_image}}{% endif %}" width="180" style="display: block; margin: 0 auto 10px;" />
<strong>{{ item.product.title }}</strong><br/>
Quantity: {{ item.quantity|floatformat:0 }}<br/>
Total: {% currency_format item.line_price|floatformat:2 %}
</div>
{% endfor %}
</div>