Shopify themes, liquid, logos, and UX
Hello, I need help removing the white space in the slideshow (mostly all blocks as it adds padding on the top and bottom) but I cannot find the code that's doing so. The theme we're using is ride and here's the link to the store (www.fitnessnbalance.com).
Image for reference:
Thanks for any help in advance!
Solved! Go to the solution
This is an accepted solution.
You add padding for all section. I you like to remove on the slide only you can 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 "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:
section#shopify-section-template--17882014908635__slideshow_aqRNEQ {
padding: 0px !important;
}
And Save.
Result:
If you like to remove the padding in all section. Check this code.
Same Instruction.
.section {
padding: 0 !important;
}
And Save.
Result:
This is an accepted solution.
Thank you very much!
I just removed the section reference on the section where I needed the padding removed, and it worked like a charm!
section#shopify-section-template--17882014908635__slideshow_aqRNEQ {
padding: 0px !important;
}
Add This css in your edit code > base.css File
.content-for-layout.focus-none section:first-child {
padding: 0;
}
If you require further help to optimize your store, please don’t hesitate to reach out.
This contribution will always benefit you and you will get my full help easily and you can contact me easily.
Contect On My Mail :-Mail@gmail.com
Hey @thisiskishor
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
.section {
padding: 0 !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
You add padding for all section. I you like to remove on the slide only you can 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 "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:
section#shopify-section-template--17882014908635__slideshow_aqRNEQ {
padding: 0px !important;
}
And Save.
Result:
If you like to remove the padding in all section. Check this code.
Same Instruction.
.section {
padding: 0 !important;
}
And Save.
Result:
This is an accepted solution.
Thank you very much!
I just removed the section reference on the section where I needed the padding removed, and it worked like a charm!
section#shopify-section-template--17882014908635__slideshow_aqRNEQ {
padding: 0px !important;
}
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025