I need help with aligning the subscribe to email part please

Topic summary

A user seeks help centering the email subscription section in their store’s footer. The current layout appears misaligned based on a screenshot showing the newsletter signup positioned off-center.

Solutions Provided:

Two community members offered CSS-based fixes:

  • Made4uo-Ribe suggested adding CSS to the theme’s stylesheet (base.css, style.css, or theme.css):

    • Target .footer-block__newsletter with flexbox properties
    • Apply display: flex, justify-content: center, flex-direction: column, and align-items: center
    • Included a result screenshot showing centered alignment
  • PageFly-Oliver proposed editing the theme.liquid file directly, though the specific code snippet appears incomplete in the conversation

Status: The original poster has not confirmed whether either solution resolved the alignment issue. The discussion remains open pending user feedback.

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


https://spullsclothing.myshopify.com

I need it in the center. Thank you

1 Like

Hi @Dingo28

Thank you for providing your website. Please try the following code below.

  • 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:
.footer-block__newsletter {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
  • And Save.
  • Result:

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

1 Like

Hi @Dingo28 ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save


Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly