How can I enlarge payment type icons in the Pipeline theme?

Hi!

I was wondering if anyone knows a way to make the payment icon types larger. They are currently super tiny in the footer. I am currently using the Pipeline theme.

1 Like

Hi @adr5 ,

Would you mind to share your URL website? with password if its protected. Thanks!

I’m working in an updated copy of the site, but here’s the preview link if that works:

https://m86fcqnzmq5hfo85-7752355.shopifypreview.com

Thank you for the informattion. Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.subfooter__item.subfooter__item--payment svg { 
    width: 50px;
}
.subfooter__item.subfooter__item--payment {
    width: 50%;
    justify-content: space-between;
}
@media only screen and (max-width: 1128px) {
    .subfooter__item.subfooter__item--payment svg { 
    width: 40px;
}
.subfooter__item.subfooter__item--payment {
    width: 50%;
    justify-content: space-between;
    grid-gap: 5px;
}
}

Result:

I hope it help.

This worked! Thank you so much!

1 Like