MyBB Community Forums

Full Version: Hide header on scroll, show on scroll up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi folks!

I have found this tutorial:
https://medium.com/@mariusc23/hide-heade...bbaae9a78c

with a working example:
http://jsfiddle.net/mariusc23/s6mLJ/31/

Anyway I have an issue with applying to MyBB, is there anybody who can help me? It is sufficient for MyBB default theme. Thank you!
Hi,

It bases on the <header> tag. For MyBB standard theme it needs to be adopted to the element id "#header".
So you need to change the JS code to something like this.
getElementByID("header").removeClass(...).addClass(...)

BTW. This simple mod is great but with a loss on flexibility due to fixed position and pixel-based dimensions/padding.

Good luck!

[ExiTuS]