Header texts cover the content on mobile device

Hello again community !
i have a problem i want to solve without affecting the desktop version , i have a custom theme on that i purchased from themeforest , i dont want the text contents on the header picture to cover the picture ,also i want to edit the header picture’s height, and i want these things to happen only on mobile version without affecting my desktop version design .
MY STORE’S LINK : https://bx461feb248yrl7a-70467289406.shopifypreview.com
EXAMPLE:

MY STORE:

Hello @Nersi

It’s GemPages support team and glad to support you today.

You can follow these steps:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid theme file
  3. Paste below code before :
@media (max-width: 767px){
  .sf__slide-media[style*="--aspect-ratio"]:before {
    padding-top: 380px;
  }
  .sf__slide-block .sf__slide-content{
    margin-top: 200px;
  }
}

Best regards,
GemPages Support Team

Hello GemPages team,
unfortunately it did not help , it’s still the same :disappointed_face:

Hi @Nersi

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/slideshow.css->paste below code at the bottom of the file:

@media (max-width: 767px) {
    .sf__slide-media[style*="--aspect-ratio"]:before {
        padding-top: 400px !important;
    }
    .sf__slide-block[class*="--middle-"] {
        align-items: flex-end !important;
        padding-bottom: 20px !important;
    }
}

I hope it would help you

1 Like

This helped ! thank you so much , this is exactly what i wanted :heart_eyes: