OK I found a solution
-
Please go to the editor > footer.liquid
-
Find this bit of code :
{%- capture payment_icon_markup -%}
{%- if show_payment_icons -%}
{{ 'general.payment.method' | t }}
-
{%- for type in shop.enabled_payment_types -%}
- {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }} {%- endfor -%}
- and add this line of code after the endfor
-
-
Now you may see that the image is small so we now have to make it bigger with CSS, go to the themeliquid
- change width and height to your liking
Copy below
#shopify-section-footer > footer > div:nth-child(3) > div > div.grid__item.small–hide.one-half.site-footer-item-center-vertically > div > ul > li:nth-child(6) > img{
width: 100px;
height: 70px;
}