How do I shift payment icons to the right in the footer?

How do I shift payment icons to the right in the footer?

flammagreg
Trailblazer
276 0 39

Hi guys, how do I move the payment icons to the right side of the footer on the same line as the 2024 Flozar. Any help is greatly appreciated!

 

Screenshot 2024-02-25 at 6.19.19 PM.png

Replies 9 (9)

Dan-From-Ryviu
Shopify Partner
11360 2227 2399

Hi @flammagreg 

Dan here from Ryviu: Product reviews & QA app.

Could you share your store URL so I can check and give you the code to do that?

 

Best Regards,

Dan

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

flammagreg
Trailblazer
276 0 39

flozar.com

Dan-From-Ryviu
Shopify Partner
11360 2227 2399

Hi @flammagreg 

Please add this code to theme.liquid file after <head> in Online Store > Themes > Edit code 

<style>
@media (min-width: 768px) {
.footer__content-bottom-wrapper .footer__column--info {
position: absolute;
}
}
</style>

Screenshot 2024-02-26 at 10.06.35.png

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

flammagreg
Trailblazer
276 0 39

I pasted the code and the icons were centered. How can I put them on the right?

Screenshot 2024-02-25 at 10.36.50 PM.png

Dan-From-Ryviu
Shopify Partner
11360 2227 2399

Please update the code 

<style>
@media (min-width: 768px) {
.footer__content-bottom-wrapper  {
position: relative;
}
.footer__content-bottom-wrapper .footer__column--info {
position: absolute;
width: fit-content;
right: 5rem;
}
}
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

flammagreg
Trailblazer
276 0 39

It went back to normalScreenshot 2024-02-25 at 10.58.41 PM.png

Dan-From-Ryviu
Shopify Partner
11360 2227 2399

You made a mistake; please remove a <style> to correct it and check again.

Screenshot 2024-02-26 at 11.01.16.png

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

flammagreg
Trailblazer
276 0 39

Ah thank you. Do you know how I can add more space between the payment icons?

Dan-From-Ryviu
Shopify Partner
11360 2227 2399

Code updated

<style>
@media (min-width: 768px) {
.footer__content-bottom-wrapper  {
position: relative;
}
.footer__content-bottom-wrapper .footer__column--info {
position: absolute;
width: fit-content;
right: 5rem;
}
.footer__content-bottom-wrapper .footer__column--info .list-payment__item {
padding: 0.8rem;
}
}
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.