> Wordpress Vertex theme help?

Wordpress Vertex theme help?

Posted at: 2014-12-18 
This is deliberate; if you are near the top, the nav bar behaves like regular static content. If you have scrolled down a ways, it pops up fixed to the top, so you can change to another page without having to scroll all the way up. Lots of sites do this.

Not only is it practical, it's something people usually want to have. Maybe just get used to it?

Fixing this is not exactly straightforward, the theme uses LOTS of custom jQuery code. Open the custom.js file, then look for this near the end: $('#top-area').waypoint

That's the code that changes the bar to fixed.

It will say this:

handler: function( direction ) {

... lots of code here

},

offset: function() {

return -( $(this).innerHeight() - $top_bar.innerHeight() );

}

If you insert "return false;" as first line of the handler function, the top bar should stop moving.

Hello! I am having an issue on a website I am creating. It uses the Elegant Theme titled "Vertex." On all pages besides the home page, the top navigation bar vanishes briefly when you scroll to the bottom and then scroll back up. It looks odd and I have been trying to fix it. Any suggestions?