1 - No highlighting (Custom Header)
<!-- paste in custom header only. no highlight from xanga.com/add_ons --><body onselectstart="return false;">
2 - Blurred Linkz (custom Header)
<style type="text/css"> /* Blurred Hyperlinks - xanga.com/add_ons - use only 45, 90, 135, 180, 225, 270, 315, or 360 for DIRECTION - STRENGTH means the blur power - do not change or remove HEIGHT:0 and add="0" */ a:hover {filter:blur(add="0",direction="90",strength="7"); height:0;}; </style>
Falling heartz codez 2 have like lil heartz falling down your page
*Enter in the top of custom header
<SCRIPT language=JavaScript1.2> <!-- Begin var no = 20; // snow number var speed = 28; // smaller number moves the snow faster var snowflake= "http://members.asianavenue.com/page_designing/blinkingwhiteheart.gif";
var ns4up = (document.layers) ? 1 : 0; // browser sniffer var ie4up = (document.all) ? 1 : 0; var dx, xp, yp; // coordinate and position variables var am, stx, sty; // amplitude and step variables var i, doc_width = 800, doc_height = 900; if (ns4up) { doc_width = self.innerWidth; doc_height = self.innerHeight; } else if (ie4up) { doc_width = document.body.clientWidth; doc_height = document.body.clientHeight; } dx = new Array(); xp = new Array(); yp = new Array(); am = new Array(); stx = new Array(); sty = new Array(); for (i = 0; i < no; ++ i) { dx[i] = 0; // set coordinate variables xp[i] = Math.random()*(doc_width-50); // set position variables yp[i] = Math.random()*doc_height; am[i] = Math.random()*20; // set amplitude variables stx[i] = 0.02 + Math.random()/10; // set step variables sty[i] = 0.7 + Math.random(); // set step variables if (ns4up) { // set layers if (i == 0) { document.write("<layer name=\"dot"+ i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(snowflake + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ i +"\" left=\"15\" "); document.write("top=\"15\" visibility=\"show\"><img src=\""); document.write(snowflake + "\" border=\"0\"></layer>"); } } else if (ie4up) { if (i == 0) { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: "); document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: "); document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\""); document.write(snowflake + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: "); document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: "); document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\""); document.write(snowflake + "\" border=\"0\"></div>"); } } } function snowNS() { // Netscape main animation function for (i = 0; i < no; ++ i) { // iterate for every dot yp[i] += sty[i]; if (yp[i] > doc_height-50) { xp[i] = Math.random()*(doc_width-am[i]-30); yp[i] = 0; stx[i] = 0.02 + Math.random()/10; sty[i] = 0.7 + Math.random(); doc_width = self.innerWidth; doc_height = self.innerHeight; } dx[i] += stx[i]; document.layers["dot"+i].top = yp[i]; document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]); } setTimeout("snowNS()", speed); } function snowIE() { // IE main animation function for (i = 0; i < no; ++ i) { // iterate for every dot yp[i] += sty[i]; if (yp[i] > doc_height-50) { xp[i] = Math.random()*(doc_width-am[i]-30); yp[i] = 0; stx[i] = 0.02 + Math.random()/10; sty[i] = 0.7 + Math.random(); doc_width = document.body.clientWidth; doc_height = document.body.clientHeight; } dx[i] += stx[i]; document.all["dot"+i].style.pixelTop = yp[i]; document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]); } setTimeout("snowIE()", speed); } if (ns4up) { snowNS(); } else if (ie4up) { snowIE(); } // End --> </SCRIPT>
Blog w/ scroller bar *UPDATE*
*Enter in the HTML part of every weblog
<textarea rows="10" cols="60" style="color: #000000; font-family: Tahoma; font-size: 10px; border-style: solid; border-width: 1px; border-color: #000000; background-color: #FFFFFF;">
WEBLOG CONTENT
</textarea>
Boxed Xangaz *UPDATE*
*Enter in Custom Header top part
<DIV align="center" valign="middle" style="BORDER-RIGHT: #660000 1px solid; BORDER-TOP: #660000 1px solid; FILTER: alpha(opacity=100); OVERFLOW: auto; BORDER-LEFT: #660000 1px solid; WIDTH: 850px; BORDER-BOTTOM: #660000 1px solid; HEIGHT: 470px; BACKGROUND-COLOR: #ffffff">
This is to adjust the Height of 'Sites I read'
¤goes in web status
<script type="text/javascript"> // (c)2003 EasterEgg, http://www.xanga.com/easteregg// updated: August 24, 2003 // A simple script to adjust the height of your Xanga's SIR-list function adjustSirListHeight() { // *** define the height of your SIR-list in the line below var sirListHeight = '250px'; var allTables = document.getElementsByTagName('tbody'); for (i=4; i < allTables.length; ++i) { if ((allTables[i].innerHTML.indexOf('SubscribeTo.aspx') != -1) && (allTables[i].innerHTML.toUpperCase().indexOf('<TABLE') == -1)) { sirlist = allTables[i].lastChild; temp = sirlist.firstChild.innerHTML; sirlist.removeChild(sirlist.firstChild); td = document.createElement('td'); div = document.createElement('div'); div.style.width = '190px'; div.style.height = sirListHeight; div.style.overflow = 'auto'; div.innerHTML = temp; td.appendChild(div); sirlist.appendChild(td); break; } } } if (navigator.userAgent.indexOf('Mac') == -1) if ((document.URL.indexOf('weblogs') == -1) && (document.URL.indexOf('guestbook') == -1) && (document.URL.indexOf('events') == -1) && (document.URL.indexOf('reviews') == -1)) adjustSirListHeight(); </script>
This is to Alphabetize Sites I Read List
¤goes in web status
<script language=javascript> <!-- // author: Sean F http://www.xanga.com/seanmeister// // this script alphabetizes the Sites I Read list on a // Xanga user's home page // copy and paste the code into the Website Stats section // of the Xanga Look & Feel page // function sortsir(sir1, sir2){ return sir1[1] < sir2[1] ? -1 : sir1[1] == sir2[1] ? 0 : 1; } var sirpage = 0; if (document.getElementById("sir")){ sirlist = document.getElementById("sir"); sirpage = 1; } else { ths=document.getElementsByTagName("th"); for (var thc=0; thc < ths.length; thc++){ if (ths[thc].innerHTML.toLowerCase() == "<b>sites i read</b>") { sirlist = ths[thc].parentNode.nextSibling; sirpage = 1; break; } } } if (sirpage == 1){ sirsites = sirlist.getElementsByTagName("a"); newsir = new Array(); for (numsir = 0; numsir < sirsites.length; numsir++) { if (sirsites[numsir].href.toLowerCase().indexOf("subscri") == -1 && sirsites[numsir].href.toLowerCase().indexOf("formpost") == -1) { newsir[newsir.length] = [sirsites[numsir].innerHTML, sirsites[numsir].innerHTML.toUpperCase(), sirsites[numsir].href]; newsir[newsir.length] = [sirsites[numsir].innerHTML, " " + sirsites[numsir].innerHTML.toUpperCase(), sirsites[numsir].href]; } } newsir.sort(sortsir); var sc = 0; for (numsir = 0; numsir < sirsites.length; numsir++) { if (sirsites[numsir].href.toLowerCase().indexOf("subscri") == -1 && sirsites[numsir].href.toLowerCase().indexOf("formpost") == -1) { sirsites[numsir].innerHTML = newsir[sc][0]; sirsites[numsir].href = newsir[sc][2]; sc++; } }} //--> </script>
This is to have Alternate background colors for your comments
¤goes in web status
<script language="javascript"> /* colorComments by Sean F http://www.xanga.com/seanmeisterthis script will display your reader comments in alternating background colors. Paste the code into the Website Stats section of your Xanga Look & Feel settings. Change the values of bg1 and bg2 to customize. */ function colorComments(){ var bg1="#FFFFFF"; var bg2="#FCEBFF"; var sw=0; var attname = document.all ? "class"+"Name" : "class"; var ctables = document.getElementsByTagName("table"); for (var cn=0; cn < ctables.length; cn++){ if (ctables[cn].getAttribute(attname) == "blogbody"){ sw = sw == 1 ? 0 : 1; ctables[cn].style.backgroundColor = sw == 1 ? bg1 : bg2; }}} if (document.location.href.indexOf("item.aspx") != -1) colorComments(); </script>
This is to hide your AD bar at the top of ya site *UPDATE*
¤goes at the very bottom of webstatz
<script type="text/javascript"> //ad remover - xanga.com/add_ons //satisfied-tom.cjb.net document.write('<style type=text/css></style> ' + '<no' + 'script>'); </script>
This is to replace the months & days to your own words.
¤goes in web status
<script type="text/javascript"> // // ©2003 EasterEgg, http://www.xanga.com/easteregg// Changes date text // For use at Xanga only. // // Info at http://dorkette.net//
function replaceWordsDates() { // ***add the Months or Days you wish to replace below var oldWordsDates = new Array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" );
// *** add the replacing Months or Days below var newWordsDates = new Array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" );
allDivData = document.getElementsByTagName('div'); var collections = new Array(allDivData); for (var k = 0 ; k < collections.length ; ++k ) { for (var i = 0 ; i < collections[k].length ; ++i ) { if (collections[k][i].innerHTML.indexOf('DIV') == -1) { for ( var n = 0 ; n < oldWordsDates.length; ++n ) { var indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n]) while (indx != -1) { var replacement = ''; indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n]); replacement = collections[k][i].innerHTML.replace(oldWordsDates[n], newWordsDates[n]); collections[k][i].innerHTML = replacement; break; } } } } } } replaceWordsDates(); </script>
This code removes the 'Get involved' & 'Postin calender' module!!! yyerrZZ
¤goes in web status
<script language="javascript"><!-- if (location.href.match ("home.aspx")) { var ht = document.getElementsByTagName ('table'); for (var t = 0; t < 10; t++) { str = ht[t].cells[0].innerHTML; if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none"; } } //--></script>
|