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
Moeed
December 25, 2024, 10:26am
2
Hey @CreatorTim
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
DaisyVo
December 25, 2024, 10:26am
3
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
Go to Online Store → Theme → Edit code.
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
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