ialex
New Member
Posts: 10
inherit
143112
0
May 29, 2010 13:09:41 GMT -8
ialex
10
July 2009
ialex
|
Post by ialex on May 6, 2008 22:53:23 GMT -8
The 'Users Online' and 'Active Users In The Past 24 Hours' components of the info centre share the same image, this code will allow you to change the icon for the 'Active Users In The Past 24 Hours' component. Edit the red text with the URL of your new icon.
Main Footer.
Cross Browser.
<script type="text/javascript"> <!--
/*Change Active Users in Past 24 Hours Icon - By iAlex - Open Source*/
var iNew_Icon="Image URL"; //New Icon Image URL
if(window.location.href.match(/action=home/) || !window.location.href.match(/action/) && !document.postForm && !document.modifyForm && !document.title.match(/\s-\sLogin/)){ var iPic=document.getElementsByTagName('img'); var i=iPic.length-1; do{ if(iPic.item(i).alt=="online" && iPic.item(i).border=="0"){ iPic.item(i).src=iNew_Icon; break; } i--; } while(i>5); }
//--> </script>
|
|