Looking for a Solution:
I'm trying to figure out how to adjust my background image within a div when the push menu is active. Here's the CSS I'm currently using:
.webcam-bg {
background-attachment: fixed;
background-image: url("../images/bg.png");
background-size: cover;
height: auto;
}
If I remove background-attachment: fixed;, the background of this div moves when the push menu is active. However, I actually need it to move to the right when the push menu is activated. Can anyone provide suggestions or help me find a solution to this issue?