[A] [CB] Replace Contact Icons with Text Apr 28, 2012 14:50:24 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by ǻñî§ђ™ on Apr 28, 2012 14:50:24 GMT This replace the contact icons in your mini profile to text. You just need to edit the CSS at the top of the code and the red parts in the javascript.Global Footer<style type="text/css"><!--.contact_font { color: #ff0000;}--></style><script type="text/javascript"><!--/* Replace Contact Icons with Text - By Anish digitaldat.proboards.com/ Don't Rip, Repost or Claim!*/var front = '$'; // Symbol before text, leave blank for nothingvar back = '^'; // Symbol after text, leave blank for nothing// Do not edit below herefor(td = document.getElementsByTagName('td'), a=0;a<td.length;a++){ if(td.width=="20%" && td.className.match(/windowbg/i)){ for(img = td.getElementsByTagName('img'), i=0;i<img.length;i++){ if(img.alt.match(/icq|yim|msn|aim|homepage|email|send pm/i)){ var imgA = img.alt.replace(/(\[)/gi,''+front+'').replace(/(\])/gi,''+back+''); var font = document.createElement('font'); font.className = "contact_font"; font.appendChild(document.createTextNode(imgA)); img.parentNode.replaceChild(font, img); i--; } } }}//--></script>