banner310
read my profile
sign my guestbook

Message: message me


Member Since: 6/27/2005

SubscriptionsSites I Read

Posting Calendar

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

Get Involved!

Suggest a link

Recommend to friend

Create a site


Thursday, July 07, 2005

<img src="http://img221.echo.cx/img221/9405/holdyoudown21ms.png">

 

<style type="text/css">
body {
  }

.left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p {
/* edits main text */
  font:normal 11px arial;
  line-height:10px;
  color:#0000ff;
  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:impact;
  text-transform:lowercase;
  font-size:24px;
  line-height:10px;
  font-weight:normal;
  color:#0000ff;
  letter-spacing:0px;
  background-color: #0000ff;
  text-align: center;
  }

a:link, .footernav.link, a.footernav:link, a.footernav:active {
/* edits all links */
  color:#0000ff;
  text-decoration: none;
  }

a:visited, a.footernav:visited,  {
/* edits the links that the user has visited */
  color:#0000ff;
  text-decoration: none;
  }

a:hover {
/* edits when user mouseovers the links */
  color:#0000ff;
  cursor: crosshair;
  text-decoration: none;
  }

input, select, textarea, .textfield, .button {
/* this edits the buttons, dropdowns, etc. */
  border: 1px solid #0000ff;
  font:normal 11px arial;
  background-color: #000000;
  letter-spacing:0px;
  color: #0000ff;
  }

table.left {
/* this edits the menu module */
  border: 1px solid #0000ff;
  width:160px;
   background-color: #000000;
  }

table.blogbody {
/* this edits the other the place where the  blog is */
  border: 0px solid 0000ff;
  background-color: #000000;
  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://url.com/to/the/site/image.gif);
  background-color: #000000;
  font: bold 11px arial;
  text-transform: lowercase;
  color: #0000ff;
  border: none;
  }
table.left TD {
/* on your menu module, this edits the body part of it */
  background-image: url(http://url.com/to/the/site/image.gif);
  background-color: #000000;
  border: none;
  }

table.search TD, table.search, table.announcements {
/* border of search bar (if you have it) */
  background-color: #000000;
  border: 1px solid #0000ff;
  }
table.search TD, table.announcements TH {
/* this should be left alone */
/* unless you know what to do */
  border: 0px solid #0000ff;
  }
table.navigation, table.main, table.footer {
/* the width of your blog with modules */
  width: 500px;
  }
hr {
/* horizontal divider */
  border: 1px solid #0000ff;
  }
</style>

<a href="xanga.com/glossi_designs">
(c) GLOSSi_DESiGNS</a>

 

 

 

 

 


<script type="text/javascript">
//
// ?003 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",
"Sunday"
);

// *** add the replacing Months or Days below
var newWordsDates = new Array(
"january",
"february",
"march",
"april",
"may",
"june",
"july",
"august",
"september",
"october",
"november",
"december",
"maybii mondaii",
"trust me tuesdaii",
"wish 4 me wednesdaii",
"think of me on thursdaii",
"kiss me fridaii",
"sweet saturdaii",
"sexii sundaii"
);

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>

 

 

 

 

 

 


<!-- begin code provided by createblog.com -->

<script>
<!-- begin code provided by createblog.com -->

<!--
//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("#0000ff","#ffffff","#0000ff");
// the border color
var blinkBorderColor = "#000000"
// the border width, in pixels
var blinkBorderWidth = 1;
// the # of rows
var blinkRows = 1;
// the # of columns
var blinkCols = 15;
// 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();
//-->

<!-- end code provided by createblog.com -->
</script>

<!-- end code provided by createblog.com -->