Cristina - Question | JoomShaper

Cristina

Kairos

Kairos

SP Page Builder 8 months ago

HI. I have a problem with this site: https://naturalghero.sviluppo.host/. I have SP Page Builder and the first image in Home page, is not seen by iPhones. I attach screenshots: https://drive.google.com/file/d/1-rHRIFOW2WEx-xeRF2ZXhSpi70jzugwp/view?usp=sharing Can anyone help me?

Thank you, Cristina!

0
3 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 8 months ago #183227

Hello Cristina,

Thanks for reaching out to us. This issue is a bit tricky to check, as it appears to be working fine on my PC. However, the background attachment is set to fixed, which may not be supported on iPhones.

Instead, you can try using:

@media (max-width: 575px) {
    .sp-page-builder .page-content #section-id-1614323155331 {
        background-attachment: scroll !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .sp-page-builder .page-content #section-id-1614323155331 {
        background-attachment: scroll !important;
    }
}

Add these code in your custom css, To add it you can follow this: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

You can choose either scroll or inherit based on your preference in background-attachment:. Let me know if this helps!

Thanks,

0
Kairos
Kairos
Accepted Answer
8 months ago #183234

Thank you I solved it as you told me Ccristina

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 8 months ago #183245

You are welcome.

0