how do i get the payment icons in the same line and same spacing
Topic summary
A user is experiencing layout issues with payment icons in their Shopify store footer—the icons are not aligning on the same line with consistent spacing.
Proposed Solutions:
Two CSS-based fixes were suggested:
-
Edit section-footer.css file:
- Navigate to Online Store → Themes → Edit code → Assets folder
- Add CSS media query targeting
.footer__column--infowith flexbox properties (display: flex,flex-direction: row-reverse,justify-content: flex-start) - Apply for screens with minimum width of 750px
-
Add custom CSS to theme.liquid:
- Insert CSS before
</body>tag - Target
.footer__column--infowithdisplay: flexandflex-direction: row !important - Adjust
.ps-payment-iconpositioning
- Insert CSS before
Status: The original poster indicated the issue was resolved after implementing one of the CSS solutions. The store URL (otahuhushoes.co.nz) was shared for reference.
Hello @Jigz
Can you share store URL?
Hi @Jigz ,
Log in to your Shopify Admin:
-
Navigate to Online Store:
-
In the left-hand sidebar, click on Online Store.
-
Access the Theme Editor:
-
Under the Themes section, locate your active theme.
-
Click on Actions and then select Edit code from the dropdown menu.
-
Locate the section-footer.css File:
-
In the Assets folder, find and click on section-footer.css. The file might also have a similar name depending on your theme (e.g., footer.css, theme-footer.css).
Edit the section-footer.css File:
Scroll to the bottom of the section-footer.css file.
Add the following CSS code at the very end of the file:
media screen and (min-width: 750px) {
.footer__column--info {
display: flex;
padding-left: 0;
padding-right: 0;
align-items: baseline;
flex-direction: row-reverse;
justify-content: flex-start;
}
}
Save Your changes
If it was helpful, Do give a like and mark it as a Solutions
BR
Dawood Mirza
yes i think it was added to the coding.
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

