How can I center payment icons below the buy button?

Hello,

I want to center the payment icons below the buy button but it does not work. I am using the dawn theme and added the code with a custom liquid.

{{ 'sections.footer.payment' | t }}
    {%- for type in shop.enabled_payment_types -%}
  • {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
  • {%- endfor -%}

The style="text-align: center won’t work. It still looks like this (please take a look at the screenshot)

Can anybody help?

Try this:


{{ 'sections.footer.payment' | t }}

{%- for type in shop.enabled_payment_types -%}
- {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}

{%- endfor -%}

1 Like

Perfect, thank you so much, it worked!