reduce spacing between items

Hi, I would like to reduce the spacing between the items bellow my main banner on mobile, can anyone help by sending the code?
https://e7wefey9ln5gqquj-88358125855.shopifypreview.com

Hi Daniel

Hope you are doing well.

Please add this CSS code to css file

@media (max-width:767px) {

div#section-id-template–23859765510431__custom_content_qcWtTj {
margin-top: 30px;
}

}

If you need assistance with your store, feel free to contact us at webcreto@gmail.com
WhatsApp No: +91 9125530390 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

Hi @Daniel19901 ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css file Add the provided code at the end of the file.

@media (max-width: 767.98px) {
    .image-overlay.text-overlay-parent--mobile-stack.height--fixed .height__image, .image-overlay.text-overlay-parent--mobile-stack.height--full .height__image {
        height: 0px !important; 
    }
}

Hi @Daniel19901

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 (max-width: 767px){
image-with-text-overlay.slideshow__slide .text-overlay__subheading {
    margin-bottom: 0;
}

image-with-text-overlay.slideshow__slide .text-overlay__title.h1 {
    margin-bottom: 0;
}

image-with-text-overlay.slideshow__slide .text-overlay__button-row {
    margin-top: 0;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!