Site logo

Archived topic

Is it possible to have different backgrounds in body for mobile and desktop?

1 reply · Started by Andrew on May 12, 2020

Viewing posts 1–2 of 2

Hi all,

I would like to know if it is possible to have different background images for desktop and mobile and if so how would I do that?

Kind regards,
Andrew

Hi there,

it would requires some CSS like so:

@media(max-width: 768px) {
    body {
        background-image: url('url_to_mobile_background_image/image.jpg');
    }
}
This archived topic is closed to new replies.