Web サイトに画像 (background.jpg) があります。デスクトップでは問題なく表示されますが、モバイルでは正しく表示されません。stylesheet.css で何を変更すれば、画像のサイズが縮小してデスクトップと同じように見えるようになりますか?
現在のコード:
#services-top-desktop {
background: #fff url(../img/background.jpg) fixed no-repeat center;
background-size: cover;
}
#services-top-mobile {
background: #fff url(../img/background.jpg) no-repeat center;
}