| <FONT style="FONT-WEIGHT: none; FONT-SIZE: 36pt; COLOR: #FF8000; LINE-HEIGHT: 34pt; FONT-FAMILY: verdana; LETTER-SPACING: -0pt">Your Header Here</FONT><BR><BR>
<style type="text/css"> body { background-color: #ffffff; background-image: url(http://www.netsurf.ru/uploads/thumbs/bloodhound-gang.jpg); background-repeat: repeat-repeat; background-attachment: fixed; background-position: bottom right; scrollbar-arrow-color: #0000ff; scrollbar-track-color: #0000ff; scrollbar-shadow-color: #0000ff; scrollbar-face-color: #ffffff; scrollbar-highlight-color: #ffffff; scrollbar-darkshadow-color: #0000ff; scrollbar-3dlight-color: #0000ff; } .left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p { /* edits main text */ font:bold 10px verdana; line-height:16px; color: #FF8000; letter-spacing:0px; text-align:center; } table.footer TD { /* this makes the footer at the bottom centered */ /* leave it alone unless you know what to do*/ text-align: center; } .left B, { font: bold 10px verdana; color: "#ffffff"; line-height: 16px;} .blogbody b, .standard b, p b, strong { /* edits bolded text in your entry */ font-weight: bold; color: #ffffff; } div.blogheader, .caption { /* edits the dates */ font-family: verdana; text-transform: italics; font-size:18px; line-height:30px; font-weight:none; filter: alpha (opacity=100, finishopacity=0, style=2); height: 1px; background-color:#FF8000; color:#0000ff; letter-spacing:1px; text-align: center; } 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:#0000ff; text-decoration: none; } a:hover { /* edits when user mouseovers the links */ color:#ffffff; font-weight:bold; cursor: ne-resize; text-decoration: dashed; filter: fliph; } input, select, textarea, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border: 2px solid #ffffff; font:normal 10px tahoma; background-color: #0000ff; letter-spacing:0px; color: #00BF00; } table.left { /* this edits the menu module */ border: 3px solid #ffffff; width:160px; background-color: #0000ff } table.blogbody { /* this edits the other the place where the blog is */ border: 3px solid #FF8000; 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(); filter: alpha (opacity=100, finishopacity=0, style=1); background-color: #0000ff; font: bold 11px arial; text-transform: uppercase; color: #ffffff; border: 1px solid white; letter spacing: 1px; } table.left TD { /* on your menu module, this edits the body part of it */ background-image: none; background-color: #0000ff; border: #ffffff; font:normal 10px verdana; line-height:16px; color: #ffffff; } table.blogbody { /* this edits the other the place where the blog is */ border: 1px solid #ffffff; background-color: #transp; width:400px; ; } table.search TD, table.search, table.announcements { /* border of search bar (if you have it) */ background-color: #0000ff; border: 2px solid #ffffff; } table.search TD, table.announcements TH { /* this should be left alone */ /* unless you know what to do */ border: 0px solid #ffffff; } hr { /* horizontal divider */ border: 5px solid #ffffff; } </style> <!-- begin code provided by createblog.com --> <style type=text/css><!-- body{border-top:#ffffff 10px solid;border-bottom:#ffffff 10px solid;border-right:#FF8000 10px solid;border-left:#FF8000 10px solid;} //--></style> <!-- end code provided by createblog.com --> <BODY style="border-bottom: #FF8000 10t solid; border-top: #FF8000 10t solid; border-left: #ffffff 10t solid; border-right: #ffffff 10t solid"></TBODY> <a href="http://www.xanga.com/USERNAME HERE">.:Refresh:. </a> <a href="http://www.xanga.com/Private/SubscribeTo.aspx?user=USERNAME HERE">.:Subscribe To Me:.</a> <a href=".:Main:.</a"http://www.xanga.com/private/home.aspx">.:Mine:.</a> <a href=".:Log"http://www.xanga.com/signin.asp">.:Log In:.</a> <a href="http://www.xanga.com/logout.asp"> .:Log Out:.</a> <a href=".:Xanga:.</a"http://www.xanga.com">.:Xanga:.</a> <a href="http://www.xanga.com/profile.asp?user=USERNAME HERE">.:Profile:.</a> <a href="http://www.xanga.com/guestbook.asp?user="USERNAME HERE">.:Guestbook:.</a> </center> <style type="text/css"> table.navigation, table.footer { display:none; } </style> <style type='text/css'> a:link { cursor:crosshair; } a:hover { cursor:crosshair; } a:visited { cursor:crosshair; } a:active { cursor:crosshair; } a:hover { filter: flipH; height: 4; color:#FF8000; } </style> <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, separated by commas var blinkColors = new Array("#0000ff","#FF8000", "#ffffff") // 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 = 70; // the width of the entire box, in pixels or % var blinkWidth = 553; // 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> <style type="text/css"><!--A:hover{color:?;filter:dropshadow(color=?,offx=2,offy=2,positive=true);height:8pt;text-decoration:none;}A{text-decoration:none;}--></style>
<a href=http://xanga.com/jet_dres_lays>"♣♣"</a><br /> <!-- End Script by Blogring.net --> |