Sticky headers make me feel claustrophobic, I don't know why. Regardless of my screen height (it could be a 30" monitor), it feels like something is "stuck" to my browser that wasn't before and makes me feel anxious. Even without that feeling, sticky headers kill the feeling that I'm moving through a viewport of a webpage. It makes your website look like it's not of the "webpage" medium that I've been familiar with f…
Kill Sticky Headers (2013)
21–30 of 84 posts
Re: Kill Sticky Headers (2013)
#22Re: Kill Sticky Headers (2013)
#23Sticky navigation on phones is not OK, but I actually like when the nav pops down when I scroll back up. A "peek-a-boo" nav, if you will.
Re: Kill Sticky Headers (2013)
#24Ever since I started using unlock origin's cosmetic filters to remove headers, footers and sidebars from most websites I visit, the web has become a much more enjoyable place. These 'engagement hacks' do little other than make your website look cluttered and distracting, which probably gets misinterpreted as 'engagement'.
##header:style(position: absolute !important)
##nav:style(position: absolute !important)Re: Kill Sticky Headers (2013)
#25 [...document.querySelectorAll("*")].filter(el => getComputedStyle(el).position === "fixed").forEach(el => el.parentNode.removeChild(el));
The code above also works, you can add the URL below to bookmarks. javascript:[...document.querySelectorAll("*")].filter(el%20=>%20getComputedStyle(el).position%20===%20"fixed").forEach(el%20=>%20el.parentNode.removeChild(el));
Also, for people who uses Safari:You can add javascript: links to your bookmark by adding any bookmark & changing the URL.
Re: Kill Sticky Headers (2013)
#26Sticky headers make me feel claustrophobic, I don't know why. Regardless of my screen height (it could be a 30" monitor), it feels like something is "stuck" to my browser that wasn't before and makes me feel anxious. Even without that feeling, sticky headers kill the feeling that I'm moving through a viewport of a webpage. It makes your website look like it's not of the "webpage" medium that I've been familiar with f…
What's worse, almost no sticky header has any useful items in it. Take StackOverflow as an example. It has a link to the homepage and a searchbar, in spite of the fact that many frequent StackOverflow users have never visited the homepage and never used the built-in search. The top of the screen is the most valuable part, because my head is usually above the screen, so it's more comfortable for my eyes to rest around the top of the viewport. So if you put something there, it had better be important.
Re: Kill Sticky Headers (2013)
#27Sticky headers make me feel claustrophobic, I don't know why. Regardless of my screen height (it could be a 30" monitor), it feels like something is "stuck" to my browser that wasn't before and makes me feel anxious. Even without that feeling, sticky headers kill the feeling that I'm moving through a viewport of a webpage. It makes your website look like it's not of the "webpage" medium that I've been familiar with f…
Re: Kill Sticky Headers (2013)
#28It's worth noting that this solution will not work for anything using the relatively new `position: sticky`
sticky has been around since at least 2014
Re: Kill Sticky Headers (2013)
#29I think they're okay for desktops (still prefer without them), but on tablets or smaller viewports, it just takes up too much screen real estate.
Re: Kill Sticky Headers (2013)
#30It's worth noting that this solution will not work for anything using the relatively new `position: sticky`
> relatively new sticky has been around since at least 2014
Also "relatively new" is still accurate in web terms, which has specifications dating to the 90s.