| <script language="Javascript"> <!-- var msg = "I'm not sleepy your just tired!!!"; document.title = msg; //--> </script>
<img src="http://i11.photobucket.com/albums/a189/xxLayoutstuffxx/sleepy.bmp"> <style type="text/css"> /*by ~Sarah~Karen~ xanga.com/ounsrolahnbong*/ body { background-color: #000000; background-image: url(); background-repeat: no-repeat; background-attachment: fixed; background-position: top center; scrollbar-arrow-color: #ffff00; scrollbar-track-color: #ff33ff; scrollbar-shadow-color: #00ffff; scrollbar-face-color: #33ff33; scrollbar-highlight-color: #00ffff; scrollbar-darkshadow-co lor: #ffff00: scrollbar-3dlight-color:#ff0000; } .left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p { /* edits main text */ font:normal 12px tahoma; line-height:18px; color:#ffff00; 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:Pepita MT; text-transform:lowercase; font-size:20px; line-height:25px; filter: alpha (opacity=100, finishopacity=0, style=2); height: 1px; background-color: #000000; color:black; letter-spacing:0px; text-align: center; } a:link, .footernav.link, a.footernav:link, a.footernav:active { /* edits all links */ color:#ffff00; text-decoration: none; font:normal 12px tahoma;
} a:visited, a.footernav:visited, { /* edits the links that the user has visited */ color: #00ffff; text-decoration: none; font:normal 12px tahoma;
} a:hover { /* edits when user mouseovers the links */ color: #33ff33; text-decoration: none; font:normal 12px tahoma;
} input, select, textarea, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border: 2px solid #00ffff; font:normal 12px tahoma; background-color: #000000; letter-spacing:0px; color: #00ffff; } table.left { /* this edits the menu module */ width:160px; border: 3px outset #0000ff; } table.blogbody { /* this edits the other the place where the blog is */ border: 3px outset #33ff33; background-color: #000000; filter:alpha (opacity=70, finishopacity=70, style=1); width: 400px; font:normal 12px tahoma; line-height:18px; color: #ff33ff; } table.left th { /* on your menu module, this edits the title part of it */ /* like BLOGRINGS, POSTING CALENDAR, etc */ background-image: none; background-color: transparent; font:normal 12px tahoma; text-transform: lowercase; color: #ff33ff; border: #33ff33 } table.left TD { /* on your menu module, this edits the body part of it */ background-image: none; background-color: transparent; border: none; font:normal 12px tahoma; line-height:18px; color: white; } table.search TD, table.search, table.announcements { /* border of search bar (if you have it) */ background-color: black border: 1px solid #000000; } table.search TD, table.announcements TH { /* this should be left alone */ /* unless you know what to do */ border: 1px solid #000000; } table.navigation, table.main, table.footer { /* the width of your blog with modules */ width: 400px; } hr { /* horizontal divider */ border: 1px solid #00000; } </style> <BODY style="border-bottom: #color.code 25t solid; border-top: #000000 25t solid; border-left: #000000 25t solid; border-right: #000000 25t solid"></TBODY> <!-- 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("#33ff33","#ff33ff","#00ffff", "#ffff00"); // the border color var blinkBorderColor = "black" // the border width, in pixels var blinkBorderWidth = 2; // the # of rows var blinkRows = 3; // the # of columns var blinkCols = 1; // the width of the entire box, in pixels or % var blinkWidth = 625; // 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>
here is another layout by muahh and for the falling stars put the code below in your webstats
< script language="JavaScript1.2"><!-- /* Falling Stars Original at altan.hr/snow Distributed by xanga.com/add_ons
fixed to work with new security measures by hotaru_01 http://xanga.com/hotaru_01 */
var no = 15; // snow number var speed = 9; // smaller number moves the snow faster var snowflake = "http://img.photobucket.com/albums/v203/fool1sh/blinkingstar.gif"; //image of individual flake
st=setTimeout; nothingHere=''; 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 = 600; 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("abso"+nothingHere+"lute; 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("abso"+nothingHere+"lute; Z-INDEX: "+ i +"; VISIBILITY: "); //xafallstar 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]); } st("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]); } st("snowIE()", speed); } if (ns4up) { snowNS(); } else if (ie4up) { snowIE(); } //--> </script>
|