Log In · Register

 
 
Closed TopicStart new topic
email it, edit
ch33sylici0us
post Jul 3 2004, 02:27 PM
Post #1


my pet rock doesn't like you
****

Group: Member
Posts: 258
Joined: Feb 2004
Member No: 4,866



Ok, so you know how one of the options next to 'eprops' and 'comments' is 'email it' ? Well i would like to change it to 'email me' and the link to be
CODE
<!-- begin code provided by createblog.com -->
<A HREF="mailto:sweet_banners@hotmail.com">email me</A>
<!-- end code provided by createblog.com -->
.

Does anyone know a code for this?
Attached File(s)
Attached File  email.jpg ( 2.48K ) Number of downloads: 0
 
 
DrNick311
post Jul 3 2004, 03:51 PM
Post #2


.
******

Group: Member
Posts: 1,488
Joined: Feb 2004
Member No: 3,625



Nope, you can't change the actual source of that link. You can change the name of the link, or take it out entirely, but the source can't be changed.
 
i ami_am
post Jul 3 2004, 03:57 PM
Post #3


RRRRRr (I) AAAAAA NNNNN
*****

Group: Member
Posts: 469
Joined: Jun 2004
Member No: 24,214



go to "need help" thing and where u change the eprop and comment it should be there
 
xBitterxSweetx
post Jul 3 2004, 09:03 PM
Post #4


ooo la la
*****

Group: Member
Posts: 433
Joined: Jun 2004
Member No: 19,853



you need to go to edit profile and change your email adress, and then add this to your website stats

CODE
<!-- 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(
       "email it",);

    // *** add the replacing words or fragments below
   var newWords = new Array(
       "email me",);

   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 -->
<!-- end code provided by createblog.com -->
 

Closed TopicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members: