Hello there, i want to move my social media icons, center align, at the bottom of the footer before the copywrite. Is that any code for this?
2 Likes
@Lieon yes I did this for many other store I will do that this task paid small fees. you can hire me or https://experts.shopify.com/
Hi @Lieon ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Hi @Lieon ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/section-footer.css->paste below code at the bottom of the file:
@media (min-width: 938px) {
.footer__content-top {
position: relative;
padding-bottom: 100px;
}
.footer__content-top .footer__list-social {
position: absolute;
bottom: 20px;
left: 50%;
transform: translatex(-50%);
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.