I've been encountering an issue with the responsiveness of my webpage. Despite using various websites and Chrome's developer tools to diagnose the problem, everything appears normal. However, when I access the page on my Samsung Galaxy S5, the background turns white and only the text is visible. Below is the media query I have implemented:
@media (max-width: 768px) {
body {
background-image: url(images/bg-img.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
margin: 0;
}
}
You can view the entire code here: https://jsfiddle.net/Manny5980/uwa4np7v/