Why not make the <header></header> element fixed to the top in order to be available at all times and reduce hustle scrolling? It's super easy!

header {
position: fixed;
width: 100%;
z-index: 1;
}

2 hours ago

Comment has been collapsed.

Even easier:

{
position: sticky;
top: 0;
z-index: 1;
}

2 hours ago
Permalink

Comment has been collapsed.

No idea, ESGST has an option for that, but it would be quite useful as a toggle on vanilla site.

2 hours ago
Permalink

Comment has been collapsed.

I prefer not. I like the extra screen real estate.

2 hours ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.