What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: How to Compress the payment icons

How can I compress and align payment icons to the right?

sebfe
Excursionist
40 0 2

hello, may i know how to compress the footer payment icon and put it on the right side, i put this code in footer.liquid, thank you for the help,

 

jtjyjnh.pnggfhfhfg.png

 

Replies 4 (4)

Easypardrop
Shopify Partner
5 1 2

Hey Sebfe,
please share the preview link or website link with me then definitely help on the issue

sebfe
Excursionist
40 0 2

hello, this is my website https://touchcare.shop

deepaksharma
Shopify Partner
449 63 99

You can adjust the html and use css to give them a good look for example:

 

we will have to add a div let's name it country-payment,

In this will will place the country selector and payment list

 

so css will be

.country-payment{
   display: flex;
   flex-direction: column; /*will arrange them in column*/
   gap: 10px;/*will add some gap, you can adjust*/
}

now they both will be align

 

I am seeing you payment images are not align properly they are very far it will create conflict. So better create a div around them suppose we created one named payment and now we will apply css here as well

.payment{
   display: flex;
   flex-direction: column; /*will arrange them in column*/
   gap: 10px;/*will add some gap, you can adjust*/
}
Deepak Sharma || Shopify Developer || Helping eCommerce Stores
- Was my reply helpful? Accept it as solution
- Was your question answered? Mark it as an Accepted Solution.
-CHAT ON WHATSAPP | BUY ME A COFFEE | MAIL ME: ds2305187@gmail.com
sebfe
Excursionist
40 0 2

where should i put the code, thank you