|
Post by thaoutlaw327 on Jan 30, 2006 2:38:24 GMT -5
|
|
|
Post by Curious George® on Jan 30, 2006 8:46:54 GMT -5
what do you mean? what code are you talking about?
|
|
|
Post by me on Jan 30, 2006 10:36:47 GMT -5
Easy way to get around the disable right click is to use the menu bar in your browser to view your source. I noticed some coding errors on your forum Might as well remove this code from your footer since you never put in a username in the code. So this code doesn't work right now <!--## COLORED USERNAMES CODE :: MUST EDIT, REMOVE IF WANTED ##-->
<script> function memberColor(Username,Color){ var theMember = document.getElementsByTagName("A") for(mc=0;mc<theMember.length;mc++){ if(theMember[mc].href.indexOf("viewprofile&username=" + Username)!=-1){ theMember[mc].style.color=Color } } }
memberColor("MODERATOR USERNAME","79B330") </script>
<!--## COLORED USERNAMES CODE :: MUST EDIT, REMOVE IF WANTED ##-->
Remove this next code cause it cause's board problems and isn't needed anyways. Cell highlight is built in feature now <!--## CELL HIGHLIGHT CODE :: MUST EDIT DO NOT REMOVE ##-->
<script> /* Cell Highlight & Link Copyright © 2003 Craig Suffolk, ProBoards.com All Rights Reserved */ var mouseOverColor = '20252A'; var statusMessage = 'Royal Five Productions'; window.status = statusMessage; cellHigh = document.getElementsByTagName('TD'); for(ch=0;ch<cellHigh.length;ch++) { if((cellHigh[ch].className=="windowbg2" && cellHigh[ch].width=="66%") || (cellHigh[ch].className=="windowbg" && cellHigh[ch].width=="48%")) { if (cellHigh[ch].width=="48%") {var num=0;} else {var num=1;} cellHigh[ch].onmouseover = function(){this.style.cursor='pointer';this.style.backgroundColor=mouseOverColor; window.status=this.getElementsByTagName('b')[0].innerHTML;}; cellHigh[ch].onmouseout = function(){this.style.backgroundColor=this.bgColor;window.status=statusMessage;}; cellHigh[ch].onclick = function(){location = this.getElementsByTagName('a')[num].href;}; } } </script>
<!--## CELL HIGHLIGHT CODE :: MUST EDIT DO NOT REMOVE ##--> That color codee is in your footer 3 times so remove all of them. Same thing for the highlight code. It's in your footer 3 times so remove all of them.
|
|
|
Post by Bradley on Jan 30, 2006 15:39:09 GMT -5
If you want people to be able to right click just remove the code. It is quite simple to get around the code anyways.
|
|