I want to reduce all this space which is in the slide section
before my footer. Any help would be appreciated!
A user seeks to reduce excessive vertical spacing in their slideshow section on a Shopify store (Farmherhands.com).
Problem Identified:
Solutions Provided:
Option 1 (DaisyVo):
.slideshow.banner-grid with min-height: unset !importantOption 2 (PageFly-Richard):
min-height: 42rem in theme editor as the cause</body> tagOption 3 (Rahul_dhiman):
component-slideshow.css file directly (Online Store > Themes > Actions > Edit Code > Assets).slideshow__text-wrapper .banner__content with padding: 1rem for screens 750px and widerAll solutions involve CSS modifications to reduce the section’s vertical dimensions.
I want to reduce all this space which is in the slide section
This is Richard from PageFly - Shopify Page Builder App
Hi @FHH24 I can help you, Please share the website url (password if any). So I can give the correct solution.
Best regards,
Richard | PageFly
What password do you need?
Hi @FHH24
To complete your requests, please follow these steps:
div.slideshow.banner.grid {
min-height: unset !important;
}
Here is the result: https://prnt.sc/U1cxJzV6DR81
I hope this helps
Best,
Daisy
Hi, No need password.
I found this css code. maybe in your theme editor it has min-height: 42rem set so it is quite high and causing space. Look in your setup to see if there is a place to set the height and fix it.
If you don’t find this setup please add code here in file theme.liquid and above tag to fix it:
Hope my solution will help you resolve the issue.
Thank you.
HEllo @FHH24
Go to online store ----> themes ----> actions ----> edit code ----> assets ---->comnponent-slideshow.css
add this code at the end of the file and save.
@media screen and (min-width: 750px) {
.slideshow__text-wrapper.banner__content {
padding: 1rem;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks