Hello friends, how can I leave some space between these 2 here?
Topic summary
A user seeks help adding vertical spacing between two elements on their Shopify mobile site, sharing a screenshot showing the layout issue.
Solutions Provided:
Three community members offered CSS solutions targeting mobile screens (max-width: 768px):
- Hasan112: Suggested adding
padding-bottom: 24pxto the specific slideshow section ID - websensepro: Recommended inserting
padding-bottom: 12pxinto theme.css/base.css targeting the general slideshow class - Rahul_dhiman: Proposed adding
padding-bottom: 20pxto component-slideshow.css with the specific section ID, including a result screenshot
All solutions use the !important flag to override existing styles. The approaches differ slightly in:
- Target file location (theme.css vs. component-slideshow.css)
- Selector specificity (section ID vs. general class)
- Spacing amount (12px-24px)
Status: Multiple solutions offered; awaiting original poster’s confirmation of which approach worked.
@NikosBat Hello
@media screen and (max-width: 768px) {
#shopify-section-template--22328067621196__slideshow_GYi7dc .slideshow__text.banner__box.content-container {
padding-bottom: 24px !important;
}
}
Accept as solution and like
Hi @NikosBat
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
@media screen and (max-width: 768px){
.slideshow__text.banner__box.content-container {
padding-bottom: 12px !important;
}
}
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!
Hello @NikosBat
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> component-slideshow.css
add this code at the end of the file and save.
@media screen and (max-width: 768px) {
#shopify-section-template--22328067621196__slideshow_GYi7dc .slideshow__text.banner__box.content-container {
padding-bottom: 20px !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks


