Archived topic
Background image
1 reply · Started by Carmen on December 14, 2017
Viewing posts 1–2 of 2
Hello!
I have a problem with a background image I used in the home page using css code.
I would like this image adapts his size to the mobile phone or tablet. Now the background image repeats itself.
Hi there,
Unfortunately background images are not responsive by nature.
I would recommend using a different or crop it specifically for mobile:
@media (max-width: 768px) {
.home {
background-image: url(https://MOBILE-BACKGROUND-IMAGE);
}
}
This archived topic is closed to new replies.