Meta-PokéBase Q&A
1 vote
457 views

The menu that has you the link to your profile, your updates, and the logout button. I don't exactly know the term for it, but you know how the search bar on Google chrome appears at the top when you scroll down to a point where it's not visible anymore? Kind of like that.

by
Curious, why do you think it’s important that it follows the screen?
Wouldn't this be better for the top of the page, including the 'Pokemon Database' Logo with scizor and zeraora, as well as the drop downs that let you navigate the site, ie. pokemon data, game mechanics, pokemon games and community/other?
https://imgur.com/a/h53G56q
Dude might be onto something ngl

It's called a sticky element and you can modify the site yourself by using a Chrome extension. Install a custom code injector, add pokemondb.net and paste this into the CSS editor:
.qa-nav-top {position: sticky;top: 0;}

Badabing badaboom.
@geckoguy the top thing would be too big I think it should just catch the navigational bar as you scroll down past it.
@Your Excellency forgive my limitless stupidity can you make it so it sticky-ifies the Pokémon data/Game mechanics/Pokémon games/Community/Other bar like I literally said last sentence and am repeating for some reason?
Yes.

.main-menu {z-index: 1; position: sticky; top: 0;}
.qa-nav-top {position: sticky; top: 48px;}

Please log in or register to answer this question.