I see no avatars or sigs ever. (sorry guys, don't have enough bandwidth)
Use this script in your css to block all forum avatars & sigs.
(made it myself)
(Tested on all phpBB, vBulletin and probaby works on even Invision Bulletin Boards)
Code:
@namespace url([URL="*www.w3.org/1999/xhtml"]*www.w3.org/1999/xhtml[/URL]);
[src*="authorsicons"],
[src*="avatar"],
[id*="avatar"],
[class*="avatar"],
[href*="avtr"],
[src*="avtr"]
{display:none!important;}
td.genmed img { display: none !important; }
.signature img { display: none !important; }
.postdetails > img { display: none !important; }
span.postbody > img { display: none !important; }
Just to do justice to the guy above me: 5/10. You may give me zero or 10 (if you like the script that is)
@mAV3. that's the point. No sig/ banner/avatar to waste bandwidth. Let Flashget have it all.
If you are using opera/greasemonkey here is the javascript to do the same;
Code:
// ==UserScript==
// @name Adblock forum avatars & sigs v1.0
// @namespace [URL="*userstyles.org/"]*userstyles.org[/URL]
// @description Blocks all avatar & signature images from forum
// @author ..:: Free Radical ::..
// @homepage [URL="*userstyles.org/style/show/2351"]*userstyles.org/style/show/2351[/URL]
// ==/UserScript==
var css = "/* ..:: Free Radical ::... */ /* Credit to PaulFox for the idea */ @namespace url([URL="*www.w3.org/1999/xhtml"]*www.w3.org/1999/xhtml[/URL]); [src*=\"authorsicons\"], [src*=\"avatar\"], [id*=\"avatar\"], [class*=\"avatar\"], [href*=\"avtr\"], [src*=\"avtr\"] {display:none!important;} td.genmed img { display: none !important; } .signature img { display: none !important; } .postdetails > img { display: none !important; } span.postbody > img { display: none !important; }";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.innerHTML = css;
heads[0].appendChild(node);
}
}
*userstyles.org/style/show/2351
Sorry if this annoys any1.
Didnt mean to.