My goal is to remove the parallax effect from the background when the screen size is reduced to that of a tablet or mobile device. I found a website with the desired effect (here), but I'm unsure how they achieved it.
I am currently using the same jquery parallax script as the website I referenced (), so theoretically, I should be able to achieve the same result.
Update: I was able to solve the issue on my own. Here is the code:
@media screen and (max-width: 480px) {
#l-HeaderContainer{
background-attachment: scroll !important;
background-position: center !important;
}
}