How to move Social Icons below Newsletter

Hi there, I am trying to move my social media icons below my newsletter area. I have tried a ton of different code combos but nothing changes. Also, I would like my 3 footer columns to be even widths regardless of the browser size, where right now the newsletter column seems more centered and is leaving the extra space where the social media icons are currently placed.

www.kawaiikaishop.com

Anyone know how to fix this?

@GemPages @KetanKumar [email removed]

Hi @kawaiikaishop

This is Victor from PageFly - Landing Page Builder App.

You can try this code by following these steps:

Go to Online store => themes => actions => edit code and add this code on file base.css

.footer-block--newsletter{
display: flex;
flex-wrap: wrap !important;
}

ul.footer__list-social.list-unstyled.list-social {
margin: inherit !important;
}

Hope this answer helps.
Best regards,
Victor | PageFly

2 Likes

Thank you so much! This worked! Are you also able to help me with spacing of my footer columns? I am trying to have them evenly spaced.

You can try this on file base.css

.footer-block--newsletter{
display: grid;
justify-content: space-evenly;
}

Thanks for the reply, but didn’t work. :confused:

Please help me add code to theme.liquid

Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag


2 Likes

That did the trick!! You’re a genius!

With the original code you gave me to move the social media icons, is there a way to tweak it to center the social media icons below the newsletter bar? Right now they are on the left side below the bar.

Your mean like that right?

@kawaiikaishop Please help me add this code on file theme.liquid


2 Likes

That worked!

Thank you for all your help! :blush:

1 Like

SORRY! One last question, I promise! :sweat_smile:

Is there a way to center all the footer columns? Not the words in the columns, but just the columns.

You can try this code to fix it and help me add this code on file theme.liquid


1 Like

Thank you!!!

1 Like