Reply To: background image not good in iPad

Home Forums Support background image not good in iPad Reply To: background image not good in iPad

Home Forums Support background image not good in iPad Reply To: background image not good in iPad

#226174
Tom
Lead Developer
Lead Developer

Unfortunately that’s just how fixed backgrounds scale.

You could set the size to “Contain”, but it probably won’t look very good on desktop.

A solution is to add a different background image with a better aspect ratio on mobile:

@media (max-width: 900px) {
    body {
        background-image: url( URL TO YOUR IMAGE );
    }
}