Codes!!!!!
i did not make these codes!!!
* Text Boxes * (what all the codes are in)
<textarea>TEXT HERE </textarea>
AUTOMATIC SCROLLBAR IN ENTRIES: gives all of your entries a scrollbar place first box in stylesheet (layout code), second in website stats
*Change Links: Comments + Eprops*(Put in WEBSITE STATS)
<---this one is only comments and e-props
Change Words like Name, Bday etc. . * Website Stats
Edits the Dates *Place in Website Stats.
Xanga Name-changes name above profile pic. Place in *Website Stats*
<!-- begin code provided by createblog.com -->
<script type='text/javascript'>
// change displayed username by micron
// for more xanga scripts and help go to createblog.com
// displayed text in place of username
var replace = 'REPLACE_THIS';
document.getElementById('ProfileModule1_lblUserName').innerHTML = replace;
</script>
<!-- end code provided by createblog.com -->
* Customized Scrollbar * Header HTML
<!--Customized Scrollbar : By Blogring.net --><br /><style type="text/css"><br /><!--<br />BODY {<br />scrollbar-face-color: #FFFFFF;<br />scrollbar-shadow-color: #FFFFFF;<br />scrollbar-highlight-color: #FFFFFF;<br />scrollbar-3dlight-color: #FFFFFF;<br />scrollbar-darkshadow-color: #FFFFFF;<br />scrollbar-track-color: #FFFFFF;<br />scrollbar-arrow-color: #FFFFFF;<br />--><br /></style><br /><!--End Script : By Blogring.net --><br /><br />
* Remove Xanga AD (top) * Bigining of Website stats
<!--AdRemover-->
<!--Screennaimless code created by Anti_fukin_social-->
<!--http://www.xanga.com/anti_fukin_social--></table></td></tr></tr></td></table>
<ilayer name=""><div id="" style="width:1; height:1; BACKGROUND: #; FILTER: alpha(opacity=0); overflow:auto">
<ilayer name=""><div id="" style="width:1; height:1; BACKGROUND: #; FILTER: alpha(opacity=0); overflow:auto">
<!--Finished-->
<!--End Of AdRemover-->
* Change Title Name * Top custome Header
<script>
document.title=
" Y0U`RE TiTLE NAME HERE "
</script>
* NO Right Click * Website stats
<script language="JavaScript1.2" type="text/javascript">
// This script and others available free at http://www.lissaexplains.com
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu() {
event.cancelBubble = true, event.returnValue = false;
return false;
}
function norightclick(e) {
if (window.Event) {
if (e.which == 2 || e.which == 3) return false;
}
else if (event.button == 2 || event.button == 3) {
event.cancelBubble = true, event.returnValue = false;
return false;
}
}
if (document.layers)
document.captureEvents(Event.MOUSEDOWN);
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onmouseup = norightclick;
//--></script>
* NO Highlighting * Website stats
<script language="JavaScript1.2">
//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit http://www.dynamicdrive.com for this script
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
Changes your italic text to a different color *CUSTOM HEADER
<!-- begin code provided by createblog.com -->
<style type="text/css">
.blogbody i, .standard i, p i, em {
font-weight: italic;
color: red;}
</style>
<!-- end code provided by createblog.com -->
* Drop Down Music Player * Can be placed at top of Stats for bottom of page or the top of header for top of page
<!-- begin code provided by blogring.net -->
<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object>
<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#transparent; WIDTH: 170px; COLOR: #33666; font-face: verdana" name="playlist" size="1">
<option value="0">SONG NAME/ARTIST</option>
<option value="1">SONG NAME/ARTIST</option>
<option value="2"> SONG NAME/ARTIST</option>
<option value="3"> SONG NAME/ARTIST</option>
<option value="4"> SONG NAME/ARTIST</option>
<option value="5"> SONG NAME/ARTIST</option>
<option value="6"> SONG NAME/ARTIST</option>
<option value="7">SONG NAME/ARTIST</option>
<option value="8">SONG NAME/ARTIST</option>
<option value="9"> SONG NAME/ARTIST</option>
<option value="10"> SONG NAME/ARTIST</option>
</select><br>
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.Pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.Stop(); playstate=2;"></p>
</form>
<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1; // set to 0 to always play first song in list
// set to 1 to randomly choose the first song to play
songs=new Array();
songs[0]=" SONG URL HERE "
songs[1]="SONG URL HERE"
songs[2]="SONG URL HERE"
songs[3]="SONG URL HERE"
songs[4]="SONG URL HERE"
songs[5]="SONG URL HERE"
songs[6]="SONG URL HERE"
songs[7]="SONG URL HERE"
songs[8]="SONG URL HERE"
songs[9]="SONG URL HERE"
songs[10]="SONG URL HERE"
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>
<!-- end code provided by blogring.net -->
TEXT HERE
TEXT HERE
TEXT HERE
TEXT HERE
TEXT HERE
TEXT HERE
<table>
<TR>
<td>
<fieldset>
<marquee direction="left" height=35 width=50 scrollamount="2"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
<fieldset>
<marquee direction="down" height=35 width=50 scrollamount="1"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
<fieldset>
<marquee direction="right" height=35 width=50 scrollamount="1"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
<fieldset>
<marquee direction="left" height=35 width=50 scrollamount="1"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
<fieldset>
<marquee direction="up" height=35 width=50 scrollamount="1"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
<fieldset>
<marquee direction="down" height=35 width=53 scrollamount="1"><font
color=#33ccff
family="arial" size=1>
TEXT HERE</font>
</marquee>
</fieldset>
</td>
<td>
</TABLE>
<-- Six Box Marque Code ^
Move Left Module to Right Side (Website Stats)
<script language="Javascript">
// original by sean http://www.xanga.com/seanmeister
var tds = document.getElementsByTagName("td");
for (var i = 0; i < tds.length; i++){
if (tds[i].width == "200"){
tds[i].parentNode.appendChild(tds[i].cloneNode(true));
tds[i].parentNode.removeChild(tds[i]);
break;
}}
</script>
Make your Modules on the Left side of your Page <!--
Switch Module Sides : Provided by Blogring.net --><script
language=javascript>// swaps sidebar position on default xanga site
layout// by sean http://www.xanga.com/seanmeisterfunction
swapSidebar(){var tds = document.getElementsByTagName("td")for (var i =
0; i < tds.length; i++){if (tds[i] == "mainleft" || tds[i].width ==
"200"){var sidebar =
tds[i].cloneNode(true);//document.write.blogring.nettds[i].parentNode.appendChild(sidebar);tds[i].parentNode.removeChild(tds[i]);break;}}}swapSidebar();</script><!--
End Script : Provided by Blogring.net --> Extra Custom Module (custom header) <table
border="1" cellspacing="0" cellpadding="4" width="204"
class="left"><tr><th valign="top" align="left"
class="left"><b>TITLE GOES
HERE</b></th></tr><tr><td valign="top"
class="left">CONTENT GOES HERE </td></tr></table>
Copy the code and put it in you custom header httml
Cursurs Website Stats
*Basic Cursurs* Website Stats
<style type="text/css"><!--body{cursor:NAME}--></style>
Choose which cursur style you like, then replace the "NAME" in the code with that cursur's name.
N-Resize NE-Resize E-Resize SE-Resize S-Resize SW-Resize W-Resize NW-Resize Move Wait CrossHair Text Help Hand
*Others*
<STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/41.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/41.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/41.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/42.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/42.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/42.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/43.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/43.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/43.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/44.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/44.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/44.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/45.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/45.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/45.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/46.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/46.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/46.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/47.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/47.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/47.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/48.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/48.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/48.cur);"></body>
LOOKUP: <STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www.boomspeed.com/sfhelpers/cursors/49.cur);}
a {cursor: url(http://www.boomspeed.com/sfhelpers/cursors/49.cur);}
</STYLE><b style=position:absolute;left:137;top:15;font-family:verdana;font-size:8pt;></i>Cursor by www.Soup-Faerie.Com</b>
SHOP: <center><img src="http://www.boomspeed.com/sfhelpers/sf-cursor.gif" border="0"></center><body style="cursor:url(http://www.boomspeed.com/sfhelpers/cursors/49.cur);"></body>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/1.ani");
}
-->
</style>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/2.ani");
}
-->
</style>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/3.ani");
}
-->
</style>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/4.ani");
}
-->
</style>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/5.ani");
}
-->
</style>
<style><!--
BODY{
cursor:url("http://freepgs.com/pinkgoddess/cursors/6.ani");
}
-->
</style>
<STYLE TYPE="text/css">
p {align=justify}
BODY{cursor: url(http://www.freepgs.com/kti2k/cursors2/cur1.ani);}
a {cursor: url(http://www.freepgs.com/kti2k/cursors2/cur1.ani);}
</STYLE>
<b style=position:absolute;left:107;top:2;ptsize:3pt;></i>Cursor by kti2k</b>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor1.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor2.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor3.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor5.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor7.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor8ni");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor6.ani");
}
-->
</style>
<style>
<!--
BODY{
cursor:url("http://www.yummyapology.net/cursor4.ani");
}
-->
</style>
custom header httml <STYLE TYPE="text/css">
BODY{cursor: url(http://www.freewebs.com/xcursorzx/cursorz/misz_shortiez_music.ani);}
</STYLE><a href="http://www.xanga.com/x_cursorz_x" target=x_cursorz_x><img src="http://img78.photobucket.com/albums/v249/x_cursorz/link_button/link6.gif" border=0></a>
custom header httml <STYLE TYPE="text/css">
BODY{cursor: url(http://www.freewebs.com/xcursorzx/cursorz/thaOneNonLie_x3.ani);}
</STYLE><a href="http://www.xanga.com/x_cursorz_x" target=x_cursorz_x><img src="http://img78.photobucket.com/albums/v249/x_cursorz/link_button/link6.gif" border=0></a>
custom header httml <STYLE TYPE="text/css">
BODY{cursor: url(http://k.1asphost.com/xcursorzx/konfuzedgurl_1200.ani);}
</STYLE><a href="http://www.xanga.com/x_cursorz_x" target=x_cursorz_x><img src="http://img78.photobucket.com/albums/v249/x_cursorz/link_button/link6.gif" border=0></a>
custom header httml <STYLE TYPE="text/css">
BODY{cursor: url(http://k.1asphost.com/xcursorzx/LilCamneseGuh.ani);}
</STYLE><a href="http://www.xanga.com/x_cursorz_x" target=x_cursorz_x><img src="http://img78.photobucket.com/albums/v249/x_cursorz/link_button/link6.gif" border=0></a>
COLOR CODES:
If you would like to use colors but don't know their codes, here are some color hex codes:
#FFFFFF
#FFFFCC
#FFFF99
#FFFF66
#FFFF33
#FFFF00
#FFCCFF
#FFCCCC
#FFCC99
#FFCC66
#FFCC33
#FFCC00
#FF99FF
#FF99CC
#FF9999
#FF9966
#FF9933
#FF9900
#FF66FF
#FF66CC
#FF6699
#FF6666
#FF6633
#FF6600
#FF33FF
#FF33CC
#FF3399
#FF3366
#FF3333
#FF3300
#FF00FF
#FF00CC
#FF0099
#FF0066
#FF0033
#FF0000
#CCFFFF
#CCFFCC
#CCFF99
#CCFF66
#CCFF33
#CCFF00
#CCCCFF
#CCCCCC
#CCCC99
#CCCC66
#CCCC33
#CCCC00
#CC99FF
#CC99CC
#CC9999
#CC9966
#CC9933
#CC9900
#CC66FF
#CC66CC
#CC6699
#CC6666
#CC6633
#CC6600
#CC33FF
#CC33CC
#CC3399
#CC3366
#CC3333
#CC3300
#CC00FF
#CC00CC
#CC0099
#CC0066
#CC0033
#CC0000
#99FFFF
#99FFCC
#99FF99
#99FF66
#99FF33
#99FF00
#99CCFF
#99CCCC
#99CC99
#99CC66
#99CC33
#99CC00
#9999FF
#9999CC
#999999
#999966
#999933
#999900
#9966FF
#9966CC
#996699
#996666
#996633
#996600
#9933FF
#9933CC
#993399
#993366
#993333
#993300
#9900FF
#9900CC
#990099
#990066
#990033
#990000
#66FFFF
#66FFCC
#66FF99
#66FF66
#66FF33
#66FF00
#66CCFF
#66CCCC
#66CC99
#66CC66
#66CC33
#66CC00
#6699FF
#6699CC
#669999
#669966
#669933
#669900
#6666FF
#6666CC
#666699
#666666
#666633
#666600
#6633FF
#6633CC
#663399
#663366
#663333
#663300
#6600FF
#6600CC
#660099
#660066
#660033
#660000
#33FFFF
#33FFCC
#33FF99
#33FF66
#33FF33
#33FF00
#33CCFF
#33CCCC
#33CC99
#33CC66
#33CC33
#33CC00
#3399FF
#3399CC
#339999
#339966
#339933
#339900
#3366FF
#3366CC
#336699
#336666
#336633
#336600
#3333FF
#3333CC
#333399
#333366
#333333
#333300
#3300FF
#3300CC
#330099
#330066
#330033
#330000
#00FFFF
#00FFCC
#00FF99
#00FF66
#00FF33
#00FF00
#00CCFF
#00CCCC
#00CC99
#00CC66
#00CC33
#00CC00
#0099FF
#0099CC
#009999
#009966
#009933
#009900
#0066FF
#0066CC
#006699
#006666
#006633
#006600
#0033FF
#0033CC
#003399
#003366
#003333
#003300
#0000FF
#0000CC
#000099
#000066
#000033
#000000
i did not make these codes!!!