Hi, I’ve used a piece of code to left align the text of my newsletter signup block on my footer, which looks fine on mobile, but on the desktop site it’s pushed it right over to the left side, and now looks silly on desktop version.
Is there a way to have it left aligned, but still in line with the rest of the content on my site, without affecting the left align on the mobile version?
1 Like
Hi @seandrx ,
first of all revert the changes you made, and the follow the below method
Here’s how you can adjust the alignment:1. Access Your Theme’s CSS:
- In your Shopify admin, go to Online Store > Themes.
- Find the theme you’re using and click on Actions > Edit code.
- Open the base.css or the corresponding CSS file where you added the custom styles.
-
Add Responsive CSS:
- At the bottom of the file, add the following CSS code:
/* Left-align the newsletter signup on mobile */ .footer__newsletter { text-align: left; margin-left: 0; } /* Center-align or adjust the margin for the newsletter signup on desktop */ @media (min-width: 768px) { .footer__newsletter { text-align: left; /* Keep it left-aligned */ max-width: 1200px; /* Adjust this width to match your content's container */ margin: 0 auto; /* Center it within the page */ padding-left: 15px; /* Adjust padding to match the rest of the content */ } }
Hi @seandrx
Would you mind to share your store URL? Thanks!
Hi, thanks for your solution, I’m afraid it hasn’t worked on this occassion.
I copied the code above and pasted in to the base.css and amended the relevant parts you’ve highlighted, but it hasn’t had any effect on the website.
Thanks for the info, 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 “theme. Liquid” file. Find the tag and paste the code below before the tag.
And Save.
Result:
I also fix the mobile screen.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
That’s fixed it exactly as I needed!! Thank you so much.
Sorry it’s me again, how can I do a similar change on my password page? I can left align all other content other than the newsletter signup form.
Hi, can you align them on the left and ill align the newsletter or other that needs to align o nthe password page.