Suggest a link
Recommend to friend
Create a site
bold italic underline
put in custom header<A href=http://www.xanga.com/home.aspx?user=ohhshiit_lays>*!&@</A><br><BR> <style type="text/css"> body { background: white url("http://img5.imageshack.us/img5/811/apple3ok.gif"); background-repeat: no-repeat; background-attachment: fixed; background-position:bottom right; scrollbar-arrow-color: black; scrollbar-track-color: white; scrollbar-shadow-color: white; scrollbar-face-color: white; scrollbar-highlight-color: white; scrollbar-darkshadow-color: white; scrollbar-3dlight-color: white; } .left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p { /* edits main text */ font:normal 8px small fonts; line-height:9px; color: #000000; 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: left; } div.blogheader, .caption { /* edits the dates */ font-family:times; text-transform:lowercase; font-size: 20px; line-height: 22px; font-weight:normal; color: black; letter-spacing: -2px; background: white url(""); text-align: center; width: 200px; border-top: 1px solid black; border-left: 1px solid black; border-right: 1px solid black; } a:link, .footernav.link, a.footernav:link, a.footernav:active { /* edits all links */ color: black; background : none; font:normal 8px small fonts; line-height:9px; text-decoration: none; text-transform:lowercase; } a:visited, a.footernav:visited, { /* edits the links that the user has visited */ color: black; background : none; font:normal 8px small fonts; line-height:9px; text-decoration: none; text-transform:lowercase; } a:hover { /* edits when user mouseovers the links */ color: black; cursor: crosshair; background-color: none; font:bold 9px trebuchet ms; line-height:11px; letter-spacing: 0px; text-decoration: none; text-transform: lowercase; } input, select, textarea, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border: 1px solid black; font:bold 9px arial; background: #ffffff ; letter-spacing:0px; color: black; } table.left { /* this edits the menu module */ border: 1px solid black; width: 170px; background: #ffffff; font: normal 8px small fonts; } table.blogbody { /* this edits the other the place where the blog is */ border-bottom: 1px solid black; border-left: 1px solid black; border-right: 1px solid black; background: #ffffff; width: 200px; } table.left th { /* on your menu module, this edits the title part of it */ /* like BLOGRINGS, POSTING CALENDAR, etc */ background: #ffffff; FONT: NORMAL 20px TIMES; text-transform:lowercase; line-height: 22px; letter-spacing:-1px; color: black; text-align: center; border: none; } table.left TD { /* on your menu module, this edits the body part of it */ background: #ffffff; border:none; text-align: left; FONT: normal 8px small fonts; } table.search TD, table.search, table.announcements { /* border of search bar (if you have it) */ background-color: white; border: 1px solid black; } table.search TD, table.announcements TH { /* this should be left alone */ /* unless you know what to do */ border: 0px solid #159EFF; } table.navigation, table.main, table.footer { /* the width of your blog with modules */ width: 400px; } hr { /* horizontal divider */ border: 1px solid #FFBFFF; } </style> <style type="text/css"> .blogbody i, .standard i, p i, em { font-weight: italic; font: normal 18px script; background: none; color: CCFF00 ;} </style> <style type="text/css"> .blogbody b, .standard b, p b, strong { font-weight: bold; text-transform: uppercase; font-family: verdana; color: 00CCFF; } </style> <style type="text/css"> .blogbody u, .standard u, p u, u { font-weight: lighter; color: orange; background: none; border-bottom:1px solid #FF80FF;} </style> <style type="text/css"> hr {display:none;} </style> <script language=javascript> var rate = 100; // Increase amount(The degree of the transmutation) var obj; // The object which event occured in var act = 0; // Flag during the action var elmH = 0; // Hue var elmS = 128; // Saturation var elmV = 255; // Value var clrOrg; // A color before the change var TimerID; // Timer ID si=setInterval; if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { Browser = true; } else { Browser = false; } if (Browser) { document.onmouseover = doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } function doRainbow() { if (Browser && act != 1) { act = 1; obj = event.srcElement; clrOrg = obj.style.color; TimerID = si("ChangeColor()",100); } } function stopRainbow() { if (Browser && act != 0) { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } function doRainbowAnchor() { if (Browser && act != 1) { obj = event.srcElement; while (obj.tagName != 'A' && obj.tagName != 'BODY') { obj = obj.parentElement; if (obj.tagName == 'A' || obj.tagName == 'BODY') break; } if (obj.tagName == 'A' && obj.href != '') { act = 1; clrOrg = obj.style.color; TimerID = si("ChangeColor()",100); } } } //document.write.blogring function stopRainbowAnchor() { if (Browser && act != 0) { if (obj.tagName == 'A') { obj.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function ChangeColor() { obj.style.color = makeColor(); } function makeColor() { // HSVtoRGB if (elmS == 0) { elmR = elmV; elmG = elmV; elmB = elmV; } else { t1 = elmV; t2 = (255 - elmS) * elmV / 255; t3 = elmH % 60; t3 = (t1 - t2) * t3 / 60; if (elmH < 60) { elmR = t1; elmB = t2; elmG = t2 + t3; } else if (elmH < 120) { elmG = t1; elmB = t2; elmR = t1 - t3; } else if (elmH < 180) { elmG = t1; elmR = t2; elmB = t2 + t3; } else if (elmH < 240) { elmB = t1; elmR = t2; elmG = t1 - t3; } else if (elmH < 300) { elmB = t1; elmG = t2; elmR = t2 + t3; } else if (elmH < 360) { elmR = t1; elmG = t2; elmB = t1 - t3; } else { elmR = 0; elmG = 0; elmB = 0; } } //document.write.blogring elmR = Math.floor(elmR); elmG = Math.floor(elmG); elmB = Math.floor(elmB); clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); elmH = elmH + rate; if (elmH >= 360) elmH = 0; return clrRGB; } </script> <!-- end code provided by createblog.com -->