My website has an image named background.jpg that displays correctly on desktop but looks odd on mobile screen sizes. How can I modify my stylesheet.css to reduce the size of the image so it appears similar to how it does on desktop?
Current code:
#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;
}