right now the text is all compressed together, was thinking if i can adjust the container width the text would be a lot more spread out.
Topic summary
A user needed to adjust the newsletter container width on their password page because the text appeared compressed. The current layout showed text bunched together, making it difficult to read.
Solution provided:
- Add custom CSS code to the theme’s stylesheet (base.css, style.css, or theme.css)
- The CSS targets
.newsletter__form.content_position-centerand setsmax-width: 100%andwidth: 50% - This spreads out the text by expanding the container width
Steps:
- Navigate to Shopify admin → Online Store → Themes
- Click Actions → Edit code on the active theme
- Open the appropriate CSS file in the Assets folder
- Add the provided CSS code at the bottom
- Save changes
Status: Resolved - the solution successfully fixed the compressed text layout.
1 Like
Hi @no1apparels
Try 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:
.newsletter__form.content_position-center {
max-width: 100%;
width: 50%;
}
- And Save.
- Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
Thank you so much! That worked.

