I recently finished creating my own website with a header image that successfully expands to the width of the screen during testing on Google Chrome for mobile responsiveness. However, upon deploying and viewing the site on actual mobile devices, the header image seems to be missing. Can someone please investigate why this might be happening? The website is hosted at robbiechastain.com
Below is the CSS code:
.hero {
position: relative;
background: url("images/laptop.png") no-repeat bottom fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
text-align: center;
color: #fff;
padding-top: 110px;
min-height: 500px;
letter-spacing: 2px;
font-family: "Montserrat", sans-serif;
}