|
<script> <!-- begin code provided by createblog.com -->
// customize by changing the values below // these are the various colors, in quotes, seperated by commas var blinkColors = new Array("#FFCC33","#FFFFFF","#6699FF"); // 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 = 100; // the width of the entire box, in pixels or % var blinkWidth = 750; // 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 --> <!-- begin code provided by createblog.com --> <style type="text/css"> /* http://createblog.com */ body { background-color: #FFFFFF; scrollbar-arrow-color: #FFCC33; scrollbar-track-color: #FFFFFF; scrollbar-shadow-color: #FF99FF; scrollbar-face-color: #FFFFFF; scrollbar-highlight-color: #FFCC33; scrollbar-darkshadow-color: #6699FF; scrollbar-3dlight-color: #6699FF; } /* edits the date */ div.blogheader, .caption { background-image: url(); background-repeat:no-repeat; background-position:center; font-family: verdana; text-transform:none; font-size:18px; line-height:18px; font-weight:normal; color:#FFCC33; letter-spacing:2px; background-color:#FFFFFF; text-align:left; border:1px solid #FFFFFF; } .blogbody b, .standard b, p b, strong { /* edits bolded text in your entry */ font-weight: bold; color: #6699FF; }
input, select, textarea, iframe.htmleditor, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border: 1px solid #ffffff; font:normal 12px verdana; background-color: FFFFFF; font-color:#6699FF; } table.footer TD { /* this makes the footer at the bottom centered */ /* leave it alone unless you know what to do*/ text-align: center; } table.left th { /* on your menu module, this edits the title part of it */ /* like BLOGRINGS, POSTING CALENDAR, etc */ background-image: url(); background-color:none; color: #000000; font: bold 10pt verdana; text-transform: none; text-align:center; border: #FFCC33 1px solid; ;} table.left { /* this edits the menu module */ width:180px; color:6699FF; background-color:FFFFFF; BORDER: #FFCC33 1px solid; }
font,td,p,xmp{color:#6699FF; font-face: verdana; font-weight:normal; font-size:9pt; text-align:justify;}
table.blogbody tr td { /* this edits the left margin of blog */ width:0px; padding-left: 0px; } table.blogbody { /* this edits the other the place where the blog is */ background-color:transparent; family-font: verdana; BORDER: #000000 1px solid; width:400px;}
a:link{line-height: 9pt; font-family: verdana;font-weight:normal; color:#ffcc33; text-transform:none;font-size:9pt; cursor:crosshair;} a:active{font-family: verdana; color:#6699ff; text-transform:none;font-size:9pt; cursor:crosshair;} a:visited{font-family: verdana; color:#ff99ff; text-transform:none;text-decoration:strikeout;font-size:9pt;cursor: crosshair;} A:hover {font-family:verdana;color:#ff99ff;text-transform: uppercase; cursor: crosshair; font-weight:bold;font-size:8pt}</style> <!-- end code provided by createblog.com --> |