View Full Version : xanga ??'s


bumbienoodlepie
08-24-2004, 06:52 AM
this has probably been asked numerous times but i really need help. in the public profile of my xanga, how can i change the words (Name, Birthdate, Interests etc.) to whatever I want. And then 2nd, how do i change the date (above my weblog) from just saying "Monday August 23rd 2004" And if they are codes, then where in my Xanga/CLAF do i put them?? Thanks so much!
-bumbienoodlepie-

CKY Chick
08-24-2004, 06:55 AM
if you mean to change your date to say something else, you would use the same code as you use for changing the words in your profile, which is here: http://www.createblog.com/forums/index.php?showtopic=230

bumbienoodlepie
08-24-2004, 10:13 PM
i tried that from creatblog.com and it didn't work.. i put it in webstats right?

CKY Chick
08-24-2004, 10:37 PM
yeah it goes in webstats

bumbienoodlepie
08-24-2004, 10:44 PM
yes. i put it in webstats and it still doesnt work. what could be the problem then?

CKY Chick
08-24-2004, 10:44 PM
can you post your code?

bumbienoodlepie
08-24-2004, 10:50 PM
<!-- begin code provided by createblog.com -->
<script type="text/javascript">
//
// &copy; EasterEgg, http://www.xanga.com/easteregg
//
// For use at Xanga only.
//
// This script replaces any given word or text fragment with
// whatever you want: new words and fragments, or even HTML!
//
// Actually it's pretty simple: add the words or fragments you
// wish to replace to the array "oldWords" (each word placed
// between double quotation marks, and separated by colons as you
// can see below) and add their replacements to the array "newWords",
// at the same position as the original words in "oldWords".
// The example is pretty self-explaining.
//
// The script is case sensitive, meaning that if you add "something"
// to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG".
//
// You can adjust the existing arrays in this code as you see fit,
// as long as both arrays keep the same size (same amount of words
// in both arrays), otherwise a script error will occur.
//
// Copy this entire code and paste in the webstats box at your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains intact,
// and as long you won't use it to cripple the comments of your visitors;
// after all, no one likes his/her words getting twisted...
//
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(
"name:",
"country:",
"state:",
"birthday:",
"gender:",
"interests:",
"member since:",
"subscriptions:",
"my blogrings:",
"posting calendar",
"Get Involved!",
"sign out");

// *** add the replacing words or fragments below
var newWords = new Array(
"you can call me:",
"the country is:",
"stuck in the state of:",
"the special day is:",
"duhh I’m a:"
"everything I <<love33",
"loovvin xanga since:",
"people that i <<love33",
"all that im obsessed with",
"everything thats been happenin",
"include yourself",
"Toodles!");

allTableData = document.getElementsByTagName('td');
allTableHeaders = document.getElementsByTagName('th');

var collections = new Array(allTableData,allTableHeaders);

for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
{
for ( var n = 0; n < oldWords.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
collections[k][i].innerHTML = replacement;
break;
}
}
}
}
}
}
replaceWords();
</script>
<!-- end code provided by createblog.com -->

CKY Chick
08-24-2004, 11:07 PM
okay where it says "duhh i'm a:" you forgot to put the ,