User Customizations

Keen314

CAGiversary!
Feedback
7 (100%)
Greasemonkey and Stylish are browser extensions that allow you to greatly customize the appearance and behavior of web sites. I use both of them often to make various small tweaks to sites I frequent, and figured this would be a convenient place to share.

This is a small bit of user CSS for Stylish that hides all avatars:

Code:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("cheapassgamer.com") {
    /* Hide avatars. */
    .ipsUserPhoto {
        display:none !important;
    }
}
I plan on writing a userscript for Greasemonkey that instead enables hiding specific users' avatars, but don't currently have time to whip that up.
 
Last edited by a moderator:
bread's done
Back
Top