How can I relocate social media icons under the newsletter box?

Hi, my social media icons are now located next to newsletter, but I want them to be under Newsletter box:

Thank you for your help!

Hi @arutze ,

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    display: grid;
    margin-right: 20%;
}
ul.footer__list-social.list-unstyled.list-social {
    justify-content: flex-start;
}

Result:

I hope it help.