Skip to content

Instantly share code, notes, and snippets.

@Wolfr
Last active December 17, 2015 17:49
Show Gist options
  • Select an option

  • Save Wolfr/5648664 to your computer and use it in GitHub Desktop.

Select an option

Save Wolfr/5648664 to your computer and use it in GitHub Desktop.
User style to read De Tijd in peace
/*
User style to read De Tijd in peace
Using stylish for chrome to manage my user styles
*/
.articledetail .content {
/* override justified text, justified doesn't work on the web */
text-align: left !important;
/* Make text actually readable without needing page zoom */
font-size: 15px !important;
}
/*
Remove annoying "read more" things:
on detail page, top one (that gets fixed)
*/
#newsteaser, #newsteaser_placeholder {
display: none;
}
/*
Remove annoying "read more" things: on home page,
top one (that gets fixed)
*/
#contentteaser {
display: none;
}
/*
Remove annoying "read more" things:
bottom one (when you reach the end of an article)
*/
.linkWithinBlock {
display: none;
}
/* Remove ads for e-shop */
.eShopTeaser {
display: none;
}
/* Remove ad for tablet app in footer */
a[title="Lees De Tijd op tablet"] {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment