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.
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.
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:
Thank you for the informattion. Try this.
.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!