inherit
22517
0
Apr 30, 2009 18:49:13 GMT -8
Bradley
Has a new webhost. :) Needs to transfer a lot of stuff. :-/
5,246
April 2004
ccworldwebmaster
|
Post by Bradley on Jul 20, 2008 10:38:18 GMT -8
Put this in your global footers: <script type="text/javascript"> // Kill Specific UBBC Icons // Bradley Nelson (CCWorld) 2008-7-19
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"); </script>Repeat for each iconThis is the filename of the image.For example, if you click on the glow button and select properties you see this under address/location: s3.images.proboards.com/glow.gifThe part you need for the code is only the bold part.
|
|