How to adjust top and bottom padding in the slider for mobile view

Hello, is there a way to adjust the top and bottom padding of the slider text on mobile? Right now, it feels like too much space. Thanks

Hi @cgregori ,

Can you provide your theme or website to provide an specific code for you?

https://dl7wyub2roiwiqi3-8166077.shopifypreview.com

@cgregori

Thank your for the link. Please follow the instructions below to decrease the padding on mobile only.

  1. From your Admin page, go to Online store > Themes > click the three dots > Edit code
  2. Find the Asset folder, and open the base.css file
  3. Add the code below at the very end of the file
@media only screen and (max-width: 750px) {
.rich-text.content-container.color-background-1.gradient.rich-text--full-width.content-container--full-width.section-template--14554154926143__90c5c384-e131-4f6c-8339-5f8cc0525223-padding {
    padding: 0px;
    padding-bottom: 9px;
}
}

There was no change.

Please add below css code at bottom of assets/base.css file

.isolate .rich-text__blocks>+ {
margin-top: 0;

}
Thank you.

That only adjusted the top padding for the block below it.