Need help with a CSS issue: I added a Max-Width media query to disable the body background-image at a specific window width (714px), but it's not working. All other CSS commands work fine, except for disabling the background-image to only show a color. Here is the code below:
body {
background-color: #737373;
/*background-image: url(../Images/bkgd.jpg);
*/background-size: cover;
color: #3A3A3A;
text-align: left;
font-family: advent-pro;
font-style: normal;
margin: 0px;
font-weight: 400;
font-size: 1.8em;
}
.NavListItem {
float: left;
}
// More CSS styles...
<!-- HTML and other content -->