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
I am looking to decrease the email sign up block padding (top and bottom) currently displayed on the following page. In saying this, I don't want it to affect the footer edm content block.
https://duoarthouse.com.au/pages/weekly-wallpaper
Thank you in advance.
Solved! Go to the solution
This is an accepted solution.
@duart2023 Try this then:
<style>
.container.strongly-padded-row.align-center.cc-animate-init.-in.cc-animate-complete {
padding: 0px 0px !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @duart2023
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>
<style>
.section-footer__text {
margin-bottom: 0 !important;
}
@media (min-width: 768px) {
.section-footer__row--blocks .section-footer__row__col {
margin-bottom: 0 !important;
}
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @websensepro unfortunately this didn't work. I'm looking to decrease the padding in the screenshot below specifically.
This is an accepted solution.
@duart2023 Try this then:
<style>
.container.strongly-padded-row.align-center.cc-animate-init.-in.cc-animate-complete {
padding: 0px 0px !important;
}
</style>
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @duart2023
Try this one.
@media only screen and (min-width: 750px) {
div#section-id-template--23790834712858__newsletter_tm7P3P .container {
padding: 0;
}
div#section-id-template--23790834712858__custom_liquid_kmRyY8 {
margin-top: 40px;
}
}
@media only screen and (max-width: 749px) {
div#section-id-template--23790834712858__newsletter_tm7P3P .container {
padding: 0 40px;
}
div#section-id-template--23790834712858__custom_liquid_kmRyY8 {
margin-top: 20px;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
@Made4uo-Ribe The only relevant ccs file I have is 'style.css.liquid' and unfortunately this still didn't work I'm sorry