Navigation Title help

Hi,

I’m using the default Casper theme. When I scroll down a post the navigation menu disappears and it is replaced with the post title (Example attached). Is there any easy way to stop it doing this?
I’d like to keep the navigation visible all the time

Thank you!

There are 2 way to do this
One is remove the js file called sticky-nav-title.js from assets/js/ & run yarn dev

2nd via css

.nav-post-title-active .nav {
    visibility: inherit;
    transform: translateY(0);
}

.nav-post-title-active .nav-post-title {
    visibility: hidden;
    opacity: 0;
    transform: translateY(0);
}
1 Like