I want to remove white space between slideshow and blog section.
Theme - Debut (Currently in Draft)
Preview Link - https://umx6e608qxh6bwzo-7337377856.shopifypreview.com
Iām Richard Nguyen from PageFly- Free Landing Page Builder
You can try with this code.
Follow this:
Go to Online Store->Theme->Edit code->theme.scss.css ->paste bellow code in bottom of file
#shopify-section-1664002302faf2fc3c {
padding-bottom: 0;
}
#shopify-section-feature-row {
padding-top: 0;
}
It will look like this:
Hope that my solution works for you.
Best regards,
Richard | PageFly
1 Like
@PageFly-Richard Space has gone from bottom of the image. Please also tell code to make it vanish from top of the image.
You can try with this code:
#shopify-section-1664002302faf2fc3c {
padding-top: 0;
}
.jdgm-carousel-wrapper{
padding-bottom: 0;
}
1 Like
Code to remove padding from top and bottom,
#shopify-section-1664002302faf2fc3c {
padding-bottom: 0;
padding-top: 0;
}
1 Like