Stylish
Stylish is a Firefox, Thunderbird, and Flock extension that allows easy management of user styles.
Userstyles
On this page you find some userstyles that i created for various sites. To install these styles, copy the code, click on the stylish-icon (in the statusbar) and choose 'create style...'. Then paste the copied code, enter a name for the userstyle and click 'save'. Or simply use the link to install it from userstyles.org.
del.icio.us nicer tagcloud
This userstyle modifies the del.icio.us tagcloud to be a bit nicer.
/* del.icio.us nicer tagcloud */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("del.icio.us") {
#delicious .bundles .one {
font-size: 75% !important;
}
#delicious .bundles .ten {
font-size: 140% !important;
}
}
/. no ads (and other stuff)
This script removes ads from Slashdot. (i'm not sure if it removes all the ads, just the ads that have css-classes 'ad1' until 'ad6'.)
/* /. no ads (and other stuff) */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("slashdot.org") {
.ad1, .ad2, .ad3, .ad4, .ad5, .ad6 {
display: none;
}
#ostgnavbar {
display: none;
}
#related-content {
height: 2px !important;
overflow: hidden;
}
#related-content:hover {
height: auto !important;
}
div.article div.intro i {
border-left-width: 0px !important;
}
}
Remove ads from Windows Live Mail
This scripts remove the ugly ads from Windows Live Mail (the ad on top of the page and on the right at the 'Today'-page)
/* Remove ads from Windows Live Mail */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("mail.live.com") {
.cAdBannerContainer,
#CustComm_300x125_TodayPage_frame,
#RadAd_Today300_frame {
display: none;
}
}
listal.com - fix tag hover color in 'images - row'-view
By default the hovercolor for tags in the 'images - row'-view on listal.com is black, which makes the tag very difficult to read. This userstyles changes it to white so that you can easily read it.
/* listal.com - fix tag hover color in 'images - row'-view */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("listal.com") {
.tags a:hover {
color: white !important;
}
}
Remove InSites question 'popup'
On some (belgian?) sites you sometimes see an irritating 'popup' asking if you want to fill in a short list of questions to improve the site. This userstyle immediately removes this frustrating stuff. (I only tested it on one site so i'm not 100% sure this will work on all insite-infected sites, but i hope to never see that stuff again)
/* Remove InSites from pages */
@namespace url(http://www.w3.org/1999/xhtml);
#eScapePopup, #eScapeISdropin {
display: none;
}
Remove some ads from Tweakers
This userstyle remove some irritating ads from Tweakers.net
/* Remove ads from Tweakers.net */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("tweakers.net") {
#bigad_holder {
display: none;
}
}
Remove ads from NewsForge
Removes most of the ads from NewsForge
/* Remove NewsForge ads */
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("newsforge.com") {
body > div {
display: none;
}
.bfaad, #adpowerbar, .rightcol_art {
display: none;
}
}