How to Move the Bottom Part of the Footer Up

Hey guys, I need to move the bottom part of the footer up, specifically the year and store name.

I already managed to lift the payment icons and the currency selector with this code, but the store name didn’t move:
.footer__content-top {
padding-bottom: 2rem !important;
}
.footer__content-bottom {
padding-top: unset !important;
}

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

Thanks,
Tim

1 Like

Hey @CreatorTim

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @CreatorTim ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

@media screen and (min-width: 769px){
.footer__content-bottom {
    position: relative !important;
}
.footer__content-bottom >  .footer__content-bottom-wrapper:nth-child(2) {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
}
}

Here is the result:

Please let me know if it works!

Best,

Daisy

Hi @CreatorTim

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(min-width:769px){
small.copyright__content {
    position: relative;
    top: -69px;
}
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

1 Like

Thank you!

Thanks, it works! And would you also know how to make the year and store name white?

Thanks you so much, I would really appreciate it.

Tim