Free Web Counters
Emilys_Layoutzz
read my profile
sign my guestbook

Visit Emilys_Layoutzz's Xanga Site!

Name: Emily
Country: Canada
Metro: Whitehorse
Birthday: 9/8/1900
Gender: Female


Interests: shopping, sports (priddy much every one), writing songs and playing them on the guitar (i just taught myself how to play! lol), running in the track 4 track meet/PE, hangin with all ma friends (*cough*mackenzie*cough*) painting my nails, and listening o my pink mimi ipod!!! i love it so dearly lol
Expertise: guitar, sports (dont wanna name them all), singing, cello (i dont like it tho lol), being funny, painting nails, $hopping!!!!! and a lot more cuz DUH im good at everything except being bad at things! lol jk
Occupation: Other
Industry: Other


Message: message me
Website: visit my website
AIM: sOccErPrO802
Yahoo: xXAcTrEsSXx06


Member Since: 5/11/2005

SubscriptionsSites I Read

Blogrings
LAYOUT_HOMIES_4_EVER
previous - random - next

i'm a layout MAKER, not a layout FAKER.
previous - random - next

LAYOUT MAKER
previous - random - next

Layout Makers Come Here!!
previous - random - next

nEw LAyoUt MAkeRs
previous - random - next

layout makers
previous - random - next

I LOVE EMILYS_LAYOUTZZ!
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site


Saturday, June 04, 2005

NEW LAYOUT SITE: www.xanga.com/p0pular_lay0uts

VOTE, SUBSCRIBE, JOIN BLOGRING, LEAVE COMMENTS!



     

If you have a question, leave me a comment asking it, and I will post the answer here. Simple Enough?

Q: What do I use the dolls for?
A: They are usually used for Profile Pics.

Q: How do I get a layout on my site?
A: Easy. I made a Tutorial. Click here to see it.

Q: What is the code for your music (Behind these Hazel Eyes)
A: http://a425.v8384d.c8384.g.vm.akamaistream.net
/7/426/8384/3b858b51/mtvrdstr.download.akamai.com/
8512/wmp/2/23893/30200_1_3_04.asf

Q: How often do you add layouts?
A: For now, I add about 2 per day.

Q: How do you make a layout?
A: It is waayy too complicated to post on here..sorry..but I'm not going to spend time answering that.

Q: What is a Jocker?
A: A jocker is a person who takes things from my site and puts them on their site saying they made it and not giving me any credit. In other words, they are sort of "Xanga Thieves."

 

Remember to VOTE for me!


Friday, June 03, 2005


      

Playlist (Input your own Html):

<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: 150px; COLOR: #33666; font-face: verdana" name="playlist" size="1">
<option value="0">SONG NAME</option>
<option value="1">SONG NAME</option>
<option value="2">SONG NAME</option>
<option value="3">SONG NAME</option>
<option value="4">SONG NAME</option>
<option value="5">SONG NAME</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";
songs[1]="SONG URL";
songs[2]="SONG URL";
songs[3]="SONG URL";
songs[4]="SONG URL";
songs[5]="SONG URL";

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>


Pop-up when entering Xanga (Website Stats):

<script language="JavaScript">alert("TEXT HERE")
</script>

Pop-up when leaving Xanga (Website Stats):

<body onUnload="alert('TEXT HERE');">

Move Left module to Right (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>


Blink Boxes (Insert your Html):

<!-- Blink Boxes : Provided by Blogring.net -->
<script language=JavaScript>
<!--
//blink boxes - xanga.com/add_ons
//by sean f
http://www.xanga.com/seanmeister
//fixed to work with new security measures by
//hotaru_01
http://www.xanga.com/hotaru_01
// customize by changing the values below
// these are the various colors, in quotes, seperated by commas
var blinkColors = new Array("#B991C9","#9D91C9","#C991AE");
// the border color
var blinkBorderColor = "#ffffff"
// the border width, in pixels
var blinkBorderWidth = 1;
// the # of rows
var blinkRows = 1;
// the # of columns
var blinkCols = 40;
// the width of the entire box, in pixels or %
var blinkWidth = 500;
// the height of each row, in pixels
var blinkRowHeight = 10;
// speed of blinking, in milliseconds
var blinkRate = 8;
// do not edit below this line
st=setTimeout;
document.write("<table id='blinkbox' width='" + blinkWidth +"' border = 0 cellspacing='" + blinkBorderWidth + "' cellpadding=0 bgcolor='" + blinkBorderColor +"'>");
for (r = 0; r < blinkRows; r++){
document.write("<TR>");
for (c = 0; c < blinkCols; c++){
document.write("<TD height='" + blinkRowHeight + "'></TD>");
}
document.write("</TR>");
}
document.write("</table>");
// ... and this makes it blink
function blinkIt() {
changecell = Math.floor(Math.random() * (blinkCols * blinkRows));
changecolor = Math.floor(Math.random() * blinkColors.length);
bb = document.getElementById("blinkbox");
bbtd = bb.getElementsByTagName("td");
bbtd[changecell].style.backgroundColor = blinkColors[changecolor];
st('blinkIt()', blinkRate);
}
blinkIt();
//-->
</SCRIPT>
<!-- End Script by Blogring.net -->

Clock (Wesite Stats):

<table border=2 bordercolor=blue
cellspacing=0><tr><td>
<applet codebase=http://www.ClockBot.com/
code=clockbot.Clock width=125 height=25>
<param name=bgColor value="#FFFFFF">
<param name=fgColor value="#9966FF">
<param name=shadowColor value="#FFFFFF">
<param name=fontName value="arial">
<param name=fontSize value="20">
<param name=xoff value="2">
<param name=yoff value="2">
<param name=xstart value="10">
<param name=ystart value="21">
<param name=rot value="0">
<param name=msleep value="300">
</applet></table>

Mouse Message (Website Stats):

<acronym title="YOUR TEXT HERE">

Xanga Ad Remover:

<!--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-->




Ashlee Simpson: