Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sillygwailo/352655a1d20f84e014ef to your computer and use it in GitHub Desktop.
Save sillygwailo/352655a1d20f84e014ef to your computer and use it in GitHub Desktop.
User CSS to remove the static header from websites
/* If you know how to edit User CSS using a browser plugin, use http://*.metafilter.com/* as the URLs for this CSS. */
header.site-header.fixed.visible {
display: none !important;
}
/* If you know how to edit User CSS using a browser plugin, use http://*.slate.com/* as the URLs for this CSS. */
header.with-dropdown {
display: none !important;
}
/* If you know how to edit User CSS using a browser plugin, use http://*.newyorker.com/* as the URLs for this CSS. */
.sticky #hd {
display: none !important;
}
/*
If you know how to edit User CSS using a browser plugin, use http://twitter.com/* as the URLs for this CSS.
This is for the canopy that I only see in a full-screen-mode browser, or maybe if my screen is wide enough.
*/
.ProfileCanopy.ProfileCanopy--withNav.is-locked {
display: none !important;
}
/*
If you know how to edit User CSS using a browser plugin, use http://*.wired.com/* as the URLs for this CSS.
*/
header.hr-unpinned {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment