Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
Seeking to have my newsletter box centered only for this page, it appears to be left aligned. The footer newsletter is fine where it is. If anyone could help me that would be greatly appreciated. Thank you so much.
https://thetypefella.com/pages/newsletter
Solved! Go to the solution
This is an accepted solution.
Hello @jmd92
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media only screen and (min-width: 750px){
.newsletter-form {
margin: 0 auto !important;
}
}
</style>
Hi @jmd92
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file -> Save
form#contact_form {
flex-direction: row !important;
max-width: 100% !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
Thank you!
This is an accepted solution.
Hello @jmd92
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
@media only screen and (min-width: 750px){
.newsletter-form {
margin: 0 auto !important;
}
}
</style>
Worked perfect thank you!
welcome @jmd92 😃
Hi @jmd92
I'm Dan from Ryviu: Product Reviews & QA
Please add this code to your theme.liquid file after <head> in Online Store > Themes > Edit code to change the newsletter box for this page only
{% if page.id == 95100567715 %}
<style>
.newsletter .newsletter-form {
flex-direction: row;
max-width: 100%;
}
</style>
{% endif %}
Best Regards,
Dan from Ryviu
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Thank you!
Very welcome
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.