I have a hunch that the issue is related to the CSS, or perhaps it could be due to including the parallax JavaScript library.
You can view the site at
Below is the SASS code snippet:
@import "compass/css3";
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
padding-top: 0;
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
<!-- More CSS code snippets here -->
Here's the Coffeescript snippet that handles scrolling to fix the menu bar at the top of the screen:
$ ->
<!-- Coffeescript function for handling scroll behavior -->
Currently, I'm having trouble with the scrolling functionality. It works fine when I scale down the webpage on my computer, but not otherwise. Additionally, the menu bar doesn't expand as expected in mobile view. Any insights into what might be causing these issues would be greatly appreciated!