lucky7
11-09-2004, 02:13 AM
hi~
is there a way to hide/get rid of the read my profile, sign my guestbook, & Member Since:..... info from your xanga site? i have seen sites w/o them, but i don't know what the code is. plz help!! thanks!
click on the link below to see what exactly i want to hide:
http://www.imagehosting.us/himages/ihnp-50893.jpg
coneblue45
11-09-2004, 02:16 AM
i got this from createblog.com (http://www.createblog.com)~
<!-- begin code provided by createblog.com -->
<STYLE type="text/css">
/*
top bar remover - xanga.com/add_ons
*/
table.navigation {display: none;};</STYLE>
<!-- end code provided by createblog.com -->
put this in your custom title thing
lucky7
11-09-2004, 02:34 AM
thanks for the code but it's not the code i'm looking for. your code helped me get rid of the top bar links, which was nice. :) what i want to get rid of/hide is the read my profile, sign my guestbook, member since:2/18/2003 links/info. but thanks anyways for the other code~
retardednerd
11-09-2004, 09:06 AM
here's the code to get rid of the "read my profile" and "sign my guestbook" links:<script language="javascript">
<!--
var links = document.getElementsByTagName ('a');
for (var l = 0; l < links.length; l++) {
str = links[l].innerHTML;
if (str.match (/\d+:\d+ (am|pm)/i)) links[l]
else if (str.match (/read my profile/i)) links[l].innerHTML = str.replace (/read my profile/i, "");
else if (str.match (/sign my guestbook/i)) links[l].innerHTML = str.replace (/sign my guestbook/i, "");
}//-->
</script>
and this one is to get rid of the "member since:...":
<script type="text/javascript">
//
// © 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(
"2/18/2003",
"Member Since:");
// *** add the replacing words or fragments below
var newWords = new Array(
"",
"");
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>
paste both of these into your webstats