https://spullsclothing.myshopify.com
I need it in the center. Thank you
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):
.footer-block__newsletter with flexbox propertiesdisplay: flex, justify-content: center, flex-direction: column, and align-items: centerPageFly-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.
Hi @Dingo28
Thank you for providing your website. Please try the following code below.
.footer-block__newsletter {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
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