Skip to content

Instantly share code, notes, and snippets.

@tung
Created December 2, 2011 04:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tung/1421741 to your computer and use it in GitHub Desktop.
Save tung/1421741 to your computer and use it in GitHub Desktop.
Clean YouTube front page
/* Hide the homepage's sidebar. */
.guide-container { display: none !important; }
.guide-background { display: none !important; }
/* Hide recommended/promoted videos on the right. */
#video-sidebar { display: none !important; }
/* Widen the subscription feed for our newly-freed space. */
#feed {
margin-left: 0 !important;
margin-right: 0 !important;
width: auto !important;
}
.feed-item .feed-item-visual h4 { width: auto !important; }
/* Hide feed item author avatars. */
.feed-item-author { display: none !important; }
/* Hide superfluous background column. */
#feed-background { display: none !important; }
/* Bigger author names, smaller video titles. */
.feed-item h3.feed-item-title a { font-size: 11pt !important; }
.feed-item .feed-item-visual h4 { font-size: 10pt !important; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment