Earlier quoted context omitted.
I have a dotjs extension (firefox) which sole purpose is to prevent those pesky huged fixed headers.
Can you provide a link? This is probably my hugest pet peeve when it comes to browsing the internet. I have no idea how fixed headers became so trendy and I find them absurdly painful. I tend to read at the top of the page and scroll down to keep my current line near the top, and (large) fixed headers really mess with that. Small ones can still be annoying, but some like Facebook's aren't that bad. I even asked a que…
And here is the code for `~/.js/_kill-position-fixed`:
$('div,a').css('position',
function (index, value) {
if (value == 'fixed')
return 'static'
}
)
Then I just link the domain name of the offending website to that file: ~/.js $ ls -l
_kill-position-fixed
polygon.com.js -> _kill-position-fixed
techcrunch.com.js -> _kill-position-fixed
I don't remember where or from who I copied this though.