How can I center align social media icons in a footer?

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.

https://lieonstore.myshopify.com/

lieonstore.myshopify.com

lieon2022

thnxxx

Hi @Lieon ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. 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.