|
Post by kenyi on Dec 21, 2004 16:49:20 GMT -5
Here ya are Simba. Okay, this code is to change the names from 'Guests' and 'Members' to 'Outlanders' and 'Pridelanders'. You don't have to anything, because I already modified it hehe, just copy and paste the script and on your Admin PC, where it says 'Edit Headers and Footers' click on that and go to "Main Page" then scroll where it says 'Footers' and paste the code there and enter. If you need anything further explanation, I'd be glad to help you, okay and now for the code:
<script language=javascript> <!-- function switchit(item,item2) { var range = document.body.createTextRange(); range.collapse(true); if (location.href.indexOf("action=headersfooters") == -1 ) while (range.findText(item)) { range.text=item2; range.collapse(false); } }
switchit("Guest","Outlander"); switchit("Member","Pridelander"); // --> </script>
|
|
|
Post by Simba on Dec 22, 2004 8:38:44 GMT -5
Thanks for that, mate .
|
|
|
Post by kenyi on Dec 22, 2004 17:53:19 GMT -5
No Problem. If you ever need any help on your forum, feel free to ask at any time.
|
|
|
Post by Simba on Dec 22, 2004 18:15:31 GMT -5
Oh I will hehe, I'm also learning a lot from other people in the main help forum ...
|
|
Zareb
Baby Cub
Merry Christmas! ^_^
Posts: 28
|
Post by Zareb on Dec 23, 2004 0:45:09 GMT -5
I'm here to help too, Simba. Just ask.
|
|
|
Post by Simba on Dec 23, 2004 4:51:33 GMT -5
If you find out how to add more smilies that would be nice mate ... Thanks!
|
|
Klowd
Playful Cub
I don't wanna be like you... you are a waste of time...
Posts: 178
|
Post by Klowd on Dec 23, 2004 5:12:01 GMT -5
Yeah i have the same problem in mine.
|
|
nathalie
Baby Cub
~ TLK soundtrack freak ~
Posts: 71
|
Post by nathalie on Dec 23, 2004 7:20:47 GMT -5
I once knew a forum from Proboards which had that. Can't seem to remember the link from it Maybe try the help forum from Proboards? I do know some codes, where you can let a color change when the mouse rolls over it.
|
|
|
Post by Simba on Dec 23, 2004 7:28:19 GMT -5
Ooooh, sounds interesting Nathalie !!! I'll check out the Proboards forums ...
|
|
nathalie
Baby Cub
~ TLK soundtrack freak ~
Posts: 71
|
Post by nathalie on Dec 23, 2004 7:43:05 GMT -5
If you want that code, just ask. If you go to my forum, you'll see what I mean.
|
|
|
Post by Simba on Dec 23, 2004 7:54:27 GMT -5
Hmm, I don't quite see what you mean ... Ah well, I'll figure it out sooner or later thanks hehe ...
|
|
nathalie
Baby Cub
~ TLK soundtrack freak ~
Posts: 71
|
Post by nathalie on Dec 23, 2004 8:00:39 GMT -5
when you first look at the forum, you know, where you have to click on the link to go to the threads, it's kind of pink color, but when you roll over it with you cursor it changes color.
|
|
|
Post by Simba on Dec 23, 2004 8:01:58 GMT -5
Oh yes I see now, that's nifty hehe, I wouldn't mind the code for that if you can send me it please .
|
|
nathalie
Baby Cub
~ TLK soundtrack freak ~
Posts: 71
|
Post by nathalie on Dec 23, 2004 8:04:29 GMT -5
this is for your "main paige" --> footer
The FFCCCC you see in there, is the color, you can change that in anything you want of course
<SCRIPT LANGUAGE="JavaScript"> <!-- /* Cell Highlight & Link Copyright © 2003 Craig Suffolk, ProBoards.com All Rights Reserved */
var mouseOverColor = 'FFCCCC'; var statusMessage = 'Welcome to ProBoards.com'; 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='hand';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>
|
|
nathalie
Baby Cub
~ TLK soundtrack freak ~
Posts: 71
|
Post by nathalie on Dec 23, 2004 8:06:08 GMT -5
this is for all the other footers you'll find there
FFFFCC is the color
<SCRIPT LANGUAGE="JavaScript"> <!-- /* Cell Highlight & Link Copyright © 2003 Craig Suffolk, ProBoards.com All Rights Reserved */
var mouseOverColor = 'FFFFCC'; var statusMessage = 'Welcome to ProBoards.com'; 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='hand';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>
|
|