Duplicated payment icon on footer

Hi! My old payment provider did’nt activate the payment icons svg’s automatically, so I added then manually to my footer, by putting them on CSS. I recently changed my provider for one that already activate the svg’s and the payment icons are duplicated. How can I fix it? Thanks!

URL: Avvoyer.com

Password: seipra

Hi, @Avvoyer .

Thanks for posting to the Shopify Community. Are you able to replicate this issue in a fresh Shopify theme?

Hi @Avvoyer

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
ul.list-payment li:nth-child(1) {
display: none;
}
ul.list-payment li:nth-child(2) {
display: none;
}
ul.list-payment li:nth-child(3) {
display: none;
}
ul.list-payment li:nth-child(4) {
display: none;
}
ul.list-payment li:nth-child(5) {
display: none;
}

Thanks! It worked perfectly!

Hi @Avvoyer

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.