inherit
48162
0
Dec 13, 2006 15:49:08 GMT -8
ericeman
9
June 2005
ericeman
|
Post by ericeman on Jun 23, 2005 17:44:54 GMT -8
I'm not a huge fan of avatar selection as it lets users be able to choose either terribly made icons or just plain vulgar ones. I'm eager to set up a "Submit Your Own Icon" board on my own board so people may submit theres for judgment and placement on the menu. Is there a way to turn off custom avatars?
Also, is there no way to make avatar selection happen on an external site as to make the whole process easier for everyone?
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jun 24, 2005 1:16:03 GMT -8
Well this will make it so nobody can use a custom avatar:
<script type="text/javascript"> <!-- /* remove custom avatars */ var ka=document.getElementsByTagName("td") for (e=0;e<ka.length;e++) { if(location.href.match(/action=modifyprofile/gi) && ka[e].innerHTML.match(/Avatar URL/) && ka[e].width.match(/160/) && ka[e].vAlign.match(/top/)){ ka[e].style.display="none"; ka[e+1].style.display="none"; ka[e+2].style.display="none"; ka[e+3].style.display="none"; ka[e+4].style.display="none"; ka[e+5].style.display="none"; ka[e+6].style.display="none"; }} // --> </script>
Main Footer
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 24, 2005 23:44:19 GMT -8
Remove entire rows instead of removing all cells in the row. Have a look at the parentNode attribute, or just use the tr tag for the loop instead of td.
|
|