How to move the bottom part of the footer up.

How to move the bottom part of the footer up.

CreatorTim
Navigator
471 1 71

Hey guys, I need to move the bottom part of my footer up, how can I do that?

CreatorTim_0-1734818288398.png

 

Here’s my store URL: https://1049xn-ya.myshopify.com/

 

Thanks,
Tim

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
10203 2423 3069

Hi @CreatorTim 

I already did check your other post. 

https://community.shopify.com/c/shopify-design/footer-adjustments/td-p/2887913

 

 

 Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
CreatorTim
Navigator
471 1 71

Hey, yeah, I've seen it, but it doesn't work.

DaisyVo
Shopify Partner
4447 495 591

HI @CreatorTim 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

.footer__content-bottom > div:nth-child(1) > .footer__column.footer__column--info {
    align-items: start !important;
}

 

Here is the result: https://prnt.sc/nBl3pSK7HttI
 
I hope this helps
 
Best,
 
Daisy
Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
CreatorTim
Navigator
471 1 71

Hey, it doesn't work, the code just moved the payment icons to the left, but I want to keep them on the right and I just want to move the bottom section (the store name and the payment icons) up. 

I want it like this:

Snímek obrazovky 2024-12-22 190357.png

And your code did this:

CreatorTim_1-1734890551494.png

 

Thank you,

Tim

DaisyVo
Shopify Partner
4447 495 591

@CreatorTim 

 

Please try this code

 

.footer__content-bottom > div:nth-child(1) > .footer__column.footer__column--info {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 55%;
}
.footer__content-bottom > div:nth-child(1) {
    position: relative !important;
}
.footer__content-bottom > div:nth-child(1) > .footer__column.footer__column--info .footer__payment {
    width: 100%;
}
.footer__content-bottom > div:nth-child(1) > .footer__column.footer__column--info .footer__payment ul.list.list-payment {justify-content: space-between !important;}

 

Here is the result: 

DaisyVo_0-1734956342061.png

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution