Now my Newsletter heading in footer is aligned center on both desktop and mobile. I would love to keep it align center on mobile but change it to the left on desktop. Please check the picture 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:
And Save.
@media only screen and (min-width: 750px){
.newsletter-form {
margin: 0px !important;
}
.footer-block__newsletter {
text-align: left !important;
}
}