<img src="http://i16.photobucket.com/albums/b50/ShatteredElegance/imfallinginlove0wt.png" alt="Image hosted by Photobucket.com"> <style type="text/css"> body { background-color: #000000; background-image: url(); background-repeat: repeat; background-attachment: fixed; background-position: bottom left; background-color: #000000; scrollbar-arrow-color: #ffffff; scrollbar-track-color: #000000; scrollbar-shadow-color:#ffffff; scrollbar-face-color: #000000; scrollbar-highlight-color: #ffffff; scrollbar-darkshadow-color: #FF80BF; scrollbar-3dlight-color: #FF80BF; }
.left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p { /* edits main text */ font:normal 10px tahoma; line-height:12px; color:#FF80BF; letter-spacing:0px; text-align:justify; }
table.footer TD { /* this makes the footer at the bottom centered */ /* leave it alone unless you know what to do*/ text-align: center; }
div.blogheader, .caption { /* edits the dates */ font-family:tahoma; text-transform:lowercase; font-size:23px; line-height:10px; font-weight:bold; color:#FFBFDF; letter-spacing:0px; background-color: transparent; text-align: center; background- image:irl (http://www.wtv-zone.com/aylana/bringontheglitter/pink/pink-05.gif); }
a:link, .footernav.link, a.footernav:link, a.footernav:active { /* edits all links */ color:#ffffff; text-decoration: none; }
a:visited, a.footernav:visited, { /* edits the links that the user has visited */ color:#FF80BF; text-decoration: none; }
a:hover { /* edits when user mouseovers the links */ color:#FFBFDF; border: 1px dashed #FFBFDF; cursor: ne-resize; text-decoration: none; }
input, select, textarea, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border: 1px dashed #FF80BF; font:normal 10px tahoma; background-color: transparent; letter-spacing:0px; color: #ffffff; }
table.left { /* this edits the menu module */ border: 1px dashed #FF80BF; width:160px; background-color: transparent; }
table.blogbody { /* this edits the other the place where the blog is */ border: 1px dashed #FF80BF; background-color: transparent; width:400px; }
table.left th { /* on your menu module, this edits the title part of it */ /* like BLOGRINGS, POSTING CALENDAR, etc */ background-image: url(http://www.wtv-zone.com/aylana/bringontheglitter/pink/pink-05.gif); background-color: FF80BF; font: bold 10px tahoma; text-transform: uppercase; color: #000000; border: none; } table.left TD { /* on your menu module, this edits the body part of it */ background-image: url(); background-color: transparent; border: none; color: #ffffff; }
table.search TD, table.search, table.announcements { /* border of search bar (if you have it) */ background-color: transparent; border: 1px dashed #FF80BF; } table.search TD, table.announcements TH { /* this should be left alone */ /* unless you know what to do */ border: 0px solid #ffffff; } table.navigation, table.main, table.footer { /* the width of your blog with modules */ width: 500px; } hr { /* horizontal divider */ border: 1px solid #ffffff; } </style>
<a href="http://xanga.com/home.aspx?user=ShatteredElegance" target="_blank">Kayla<3</a><br><br>
<style> table.footer {display: none;} </style>
<!-- begin code provided by createblog.com --> <script language=JavaScript> /* Falling Picture *1 picture* Original at http://black.demons.to/ fixed to work in XANGA by xanga.com/dorischu */ st=setTimeout; change=''; //#Amended Code
var no = 10; // number of picture appear var speed = 50; // smaller value will move more faster var falling = "http://www.samorin.net/connect/images/items/86.gif"; // PUT YOUR IMAGE URL HERE var ns4up = (document.layers) ? 1 : 0; var ie4up = (document.all) ? 1 : 0; var dx, xp, yp; var am, stx, sty; var i, doc_width = 600, doc_height = 800; 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; xp[i] = Math.random()*(doc_width-50); yp[i] = Math.random()*doc_height; am[i] = Math.random()*20; stx[i] = 0.02 + Math.random()/10; sty[i] = 0.7 + Math.random(); if (ns4up) { if (i == 0) { document.write("<layer name=\"dot"+ i +"\" left=\"20\" top=\"10\" visibility=\"show\"><img src=\"" + falling + "\" border=\"0\"></layer>"); } else { document.write("<layer name=\"dot"+ i +"\" left=\"20\" top=\"10\" visibility=\"show\"><img src=\"" + falling + "\" border=\"0\"></layer>"); } } else if (ie4up) { if (i == 0) { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: abso"+change+"lute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 10px; LEFT: 20px;\"><img src=\"" + falling + "\" border=\"0\"></div>"); } else { document.write("<div id=\"dot"+ i +"\" style=\"POSITION: abso"+change+"lute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 10px; LEFT: 20px;\"><img src=\"" + falling + "\" border=\"0\"></div>"); } } } function snowNS() { for (i = 0; i < no; ++ i) { 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]); } st("snowNS()", speed); } function snowIE() { for (i = 0; i < no; ++ i) { 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]); } st("snowIE()", speed); } if (ns4up) { snowNS(); } else if (ie4up) { snowIE(); } </SCRIPT> <!-- end code provided by createblog.com --> |