Decrease Mailing List Padding - Urgent

Solved

Decrease Mailing List Padding - Urgent

duart2023
Explorer
86 1 27

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.

Accepted Solution (1)
websensepro
Shopify Partner
2109 262 313

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!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 5 (5)

websensepro
Shopify Partner
2109 262 313

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>

 

websensepro_0-1730119256893.png

 

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!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
duart2023
Explorer
86 1 27

Hi @websensepro unfortunately this didn't work. I'm looking to decrease the padding in the screenshot below specificallyScreenshot 2024-10-28 225217.jpg

websensepro
Shopify Partner
2109 262 313

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!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

Made4uo-Ribe
Shopify Partner
10211 2427 3081

Hi @duart2023 

Try this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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:

 

@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;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1730120364587.pngMade4uoRibe_1-1730120376501.png

     

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
duart2023
Explorer
86 1 27

@Made4uo-Ribe The only relevant ccs file I have is 'style.css.liquid' and unfortunately this still didn't work I'm sorry