| Custom Header.
<Center> <script language=javascript> document.title=("YouR TiTLe HeRe") </script> <FONT style="FONT-WEIGHT: bold; FONT-SIZE: 40pt; COLOR: #2B3953; LINE-HEIGHT: 20pt; FONT-FAMILY: Times New Roman; LETTER-SPACING: -4pt">V<i>i</i>n<b>ta</b>ge<font style="font-weight:; font-size:36pt; color: #FFDBC1; line-height:20pt; font-family: Times New Roman; letter-spacing:-6pt">♥</font><br><br></font><p><p> <center><img src="http://img64.imageshack.us/img64/4258/image39ur.gif"><br> <a href="http://www.xanga.com/FashiioniistaLayoutsz__x3" target="_blank">Fashiioniista'sz Layoutsz</a><br/>
Web Stats.
<style type="text/css"> /*Stylesheet*/ /* by Lema (xanga.com/FashiioniistaLayoutsz__x3) */ body { background-color: #F9BB89; background-image: URL(); background-repeat:; background-attachment:; background-position:; background-color: #F9BB89; } .left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p { /* edits main text */ font: Normal 10px Arial; line-height: 10px; color: #2B3953; letter-spacing: 0px; text-align: Justify; } .left B, { font: 10px Arial; color: "#000000"; line-height: 10px;} .blogbody b, .standard b, p b, strong { /* edits bolded text in your entry */ font-weight: Italic; color: #2B3953;
}
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: Times New Roman; text-transform:; font-size: 28px; line-height: 30px; font-weight:; height: 0px; color: #2B3953; letter-spacing: 2px; text-align: Center; background-color:Transparent; border:; } a:link, .footernav.link, a.footernav:link, a.footernav:active { /* edits all links */ color: #2B3953; text-decoration: None; font: Normal 10px Arial; line-height: 10px;
} a:visited, a.footernav:visited, { /* edits the links that the user has visited */ color: #2B3953; text-decoration: None; font: Normal 10px Arial; line-height: 10px;
} a:hover { /* edits when user mouseovers the links */ color: #2B3953; text-decoration: None; font: 10px Arial; line-height: 10px; background-image: URL(); border: 4px Solid #849680; } input, select, textarea, .textfield, .button { /* this edits the buttons, dropdowns, etc. */ border:; font: Normal 10px Arial; background-color: #FFDBC1; letter-spacing: 0px; color: #2B3953; } table.left { /* this edits the menu module */ border: 4px Solid #849680; width: 150px; font: Normal 10px Arial; line-height: 10px; } table.blogbody { /* this edits the other the place where the blog is */ border: 4px Solid #849680; background-color: #FFDBC1; width: 300px; font: Normal 10px Arial; line-height: 10px; color: #2B3953;
} table.left th { /* on your menu module, this edits the title part of it */ /* like BLOGRINGS, POSTING CALENDAR, etc */ background-color: #FFDBC1; font: Normal 10px Arial; color: #2B3953; border:; BORDER-BOTTOM: 4px Solid #849680; } table.left TD { /* on your menu module, this edits the body part of it */ background-image: None; background-color: #FFDBC1; border: None; font: Normal 10px Arial; line-height: 10px; color: #2B3953; }
table.search TD, table.search, table.announcements { /* border of search bar (if you have it) */ background-color:; border:; } table.search TD, table.announcements TH { /* this should be left alone */ /* unless you know what to do */ border: 4px Solid #849680; } table.navigation, table.main, table.footer { /* the width of your blog with modules */ width: 300px; } hr { /* horizontal divider */ border: 2px Solid #849680; } </style> <!-- End Script by Blogring.net -->
<!-- begin code provided by createblog.com --> <style type="text/css"> .blogbody u, .standard u, p u, u { font-weight: Underline; color: #849680;} </style> <!-- end code provided by createblog.com -->
<!-- begin code provided by createblog.com --> <style type="text/css"> .blogbody i, .standard i, p i, em { font-weight: Italic; color: #000000;} </style> </TBODY>
<script type="text/javascript"> // // 2003 EasterEgg, http://www.xanga.com/easteregg // // For use at Xanga only. // // This script replaces any given word or text fragment with // whatever you want: new words and fragments, or even HTML! // // Actually it's pretty simple: add the words or fragments you // wish to replace to the array "oldWords" (each word placed // between double quotation marks, and separated by colons as you // can see below) and add their replacements to the array "newWords", // at the same position as the original words in "oldWords". // The example is pretty self-explaining. // // The script is case sensitive, meaning that if you add "something" // to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG". // // You can adjust the existing arrays in this code as you see fit, // as long as both arrays keep the same size (same amount of words // in both arrays), otherwise a script error will occur. // // Copy this entire code and paste in the webstats box at your // Look and Feel page. // // You're free to use this script as long as this comment remains intact, // and as long you won't use it to cripple the comments of your visitors; // after all, no one likes his/her words getting twisted... //
function replaceWords() { // ***add the words or fragments you wish to replace below var oldWords = new Array( "Subscriptions", "Gender:", "Birthday:", "My Blogrings", "eprop", "comment", "Name:", );
// *** add the replacing words or fragments below var newWords = new Array( "subscribers", "i'm <b>100</b> <u>%</u>;♥", "♥b<i>o</i>rn on;", "bl<u>og</u>ring<i>s</i>♥", "♥e-props♥", "♥comments♥", "the name is;" );
allTableData = document.getElementsByTagName('td'); allTableHeaders = document.getElementsByTagName('th'); var collections = new Array(allTableData,allTableHeaders); for (var k = 0 ; k < collections.length ; ++k ) { for (var i = 0 ; i < collections[k].length ; ++i ) { if (collections[k][i].innerHTML.indexOf('TABLE') == -1) { for ( var n = 0 ; n < oldWords.length; ++n ) { var indx = collections[k][i].innerHTML.indexOf(oldWords[n]) while (indx != -1) { var replacement = ''; indx = collections[k][i].innerHTML.indexOf(oldWords[n]); replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]); collections[k][i].innerHTML = replacement; break; } } } } } } replaceWords(); </script>
<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", "♥monday♥</font>", "♥tuesday♥</font>", "♥wednesday♥</font>", "♥thursday♥</font>", "♥friday♥</font>", "♥saturday♥</font>", "♥sunday♥</font>" );
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 HTML Script provided by Blogring.net --> <style type="text/css"> #profInterests, #ProfileModule1_hplProfile, #ProfileModule1_hplGuestbook, #profMember, #ProfileModule1_lblRegister {display: None} </style> <!-- End HTML Script provided by Blogring.net --> |