Hi, is it possible to add different body background for mobile size screens? In this site background is terrible on mobile size screens. I would like to use some dark image which could repeat, for mobile screens. http://www.valepa.fi
First try adding below CSS code so that your current background image works fine in mobile devices. To add below custom CSS code go to Appearance > Customize > Ambition Theme Options > Custom CSS and paste the below CSS code then click on Save button.
@media only screen and (max-width: 767px) {
body.custom-background {
background-attachment: scroll;
}
}