Remove social Icons below newsletter in footer

Topic summary

A user needed to remove social media icons appearing below the newsletter section in their Shopify store footer (Theme: Impulse).

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS at the bottom:
ul.no-bullets.social-icons.footer__social {
    display: none;
}
  • Save changes

Status: Resolved. The user confirmed the solution worked successfully.

Summarized with AI on November 10. AI used: claude-sonnet-4-5-20250929.

Hi,
I am trying to remove the want the social icons located in the footer, just below the newsletter section.
attaching a screenshot for reference.

Link: https://testingstoresandthemes.myshopify.com/

Theme name: Impulse

Storefront password: test

Any help is greatly appreciated.

1 Like

Hi @technase

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

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:

ul.no-bullets.social-icons.footer__social {
    display: none;
}

And save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you so much.