Remove Specific UBBC Icons Code:

Global Footer:

<script type="text/javascript"><!--
var images = document.getElementsByTagName("img"); var i;
function KillUbbcIcon(url){
for(i=0;i<images.length;i++){
if (images.item(i).src.indexOf(url) != -1 && images.item(i).parentNode.href.match(/vascript\:add/)){
images.item(i).parentNode.style.display = "none";break;}}}

KillUbbcIcon("shadow.gif"); // the filename of the icon
//--></script>

Code Database:

If you have a Code Database (a forum that serves as a collection of scripts) on your message board, you may paste the following code into that forum to add it your own code list.

[b]Title:[/b] [url=http://proboards.gamingmedley.com/codes/remove-specific-ubbc-icons.html]Remove Specific UBBC Icons[/url]
[b]Creator:[/b] Bradley Nelson
[b]Cross-Browser:[/b] Yes
[b]Placement:[/b] Global Footer
[code]<script type="text/javascript"><!--
var images = document.getElementsByTagName("img"); var i;
function KillUbbcIcon(url){
for(i=0;i<images.length;i++){
if (images.item(i).src.indexOf(url) != -1 && images.item(i).parentNode.href.match(/vascript\:add/)){
images.item(i).parentNode.style.display = "none";break;}}}

KillUbbcIcon("shadow.gif"); // the filename of the icon
//--></script>[/code]