How can I properly align payment icons on my footer?

I added the payment icons this happened. How can I align the payment icons please?
Untitled.png

glendacooper.myshopify.com
password: blieto

Hi, I opened the link, but I don’t see any icons in the footer

Please check now

I am checking, but I see that you are working on the code at the same time and the layout has been changed, so I am not sure to provide the correct help.

1 Like

I checked now and I see you implemented a good solution.

You could optimize it, by using this code.

.container.footer__credits {
    align-items: center;
}
.payment_methods {
    white-space: nowrap;
}

And it will vertically center the icons without using margins on .payment_methods class.

hello @Glenda2007

please Go to Online Store->Theme->Edit code then go to assets/style.css ->paste below code at the bottom of the file.

.container.footer__credits {
    align-items: center;
}
.payment_methods {
    white-space: nowrap;
}
1 Like