Reduce the padding on slideshow mobile view - dawn theme

I’d like to reduce the padding on the slideshow section on mobile view - I’ve highlighted the upper and lower space part of the text bit of the section that I’d like reducing.

Any advice is really appreciated.

Dawn theme

URL: https://brain-boost.co.uk/

  1. Go to online store
  2. Edit Code
  3. Open your section-image-banner.css file
  4. Paste the following code at the bottom:

@media only screen and (max-width: 768px) {
.banner__box {padding-top: 1rem !important, padding-bottom: 1rem!important;}
}

  1. Save.

Let me know if it work by marking it as a solution.

Hi @BraxtonEcom

Try 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:
@media only screen and (max-width: 749px){
.banner__box { 
    padding: 2rem !important;
}
}