Is there an easy way to make the menu is Casper not sticky?

I like everything about the theme, but would like the menu to scroll up and not be sticky.

Thoughts?

You can do that adding the following code in code injection:

<style>
  .site-nav-main {
    position: relative;
  }
</style>

Originally the position attribute is set as fixed.

1 Like