centering dates, help? |
centering dates, help? |
Dec 12 2004, 11:02 PM
Post
#1
|
|
![]() SlippingAway.. ![]() ![]() Group: Member Posts: 16 Joined: Dec 2004 Member No: 71,303 |
hey, i was jus wonderin.. is there anyway i can center a date, but like with another um, html code in it? like having the code..
<!-- begin code provided by createblog.com --> <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,", "2002", "2003", "2004", "2005", "2006", "2007", "2008", "01, ", "02, ", "03, ", "04, ", "05, ", "06, ", "07, ", "08, ", "09, ", "10, ", "11, ", "12, ", "13, ", "14, ", "15, ", "16, ", "17, ", "18, ", "19, ", "20, ", "21, ", "22, ", "23, ", "24, ", "25, ", "26, ", "27, ", "28, ", "29, ", "30, ", "31, " ); // *** add the replacing Months or Days below var newWordsDates = new Array( "x jAnuAry", "x februAry", "x mArch", "x April", "x mAy", "x jUne", "x jUly", "x August", "x sEptEmbEr", "x octobEr", "x novEmbEr", "x dEcEmbEr", "*mun-dai ", "*twos-dai ", "*wends-dai ", "*thurrs-dai ", "*fry-dai ", "*satter-dai ", "*son-dai ", " 2oo2", " 2oo3", " 2oo4", " 2oo5", " 2oo6", " 2oo7", " 2oo8", "o1, ", "o2, ", "o3, ", "o4, ", "o5, ", "o6, ", "o7, ", "o8, ", "o9, ", "1o, ", "11, ", "12, ", "13, ", "14, ", "15, ", "16, ", "17, ", "18, ", "19, ", "2o, ", "21, ", "22, ", "23, ", "24, ", "25, ", "26, ", "27, ", "28, ", "29, ", "3o, ", "31, " ); 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]); if(navigator.userAgent.toLowerCase().indexOf('compatible')>0){collections[k][i].innerHTML=replacement;//please use supported code at http://help.xanga.com/codes.htm } break; } } } } } } replaceWordsDates(); </script> <!-- end code provided by createblog.com --> and making it so the date is centered above the post?? thank yaa <3. jess |
|
|
|
![]() |
Dec 12 2004, 11:21 PM
Post
#2
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 2,137 Joined: Nov 2004 Member No: 62,193 |
this will center them:
CODE <!-- begin code provided by createblog.com -->
<style type="text/css"> div.blogheader, .caption { text-align:center;} </style> <!-- end code provided by createblog.com --> |
|
|
|
jesska17 centering dates Dec 12 2004, 11:02 PM
jesska17 thanx a ton MyChemicalRomance Dec 13 2004, 04:02 PM
Sherry_Vu QUOTE(jesska17 @ Dec 13 2004, 4:02 PM)thanx a... Dec 13 2004, 04:39 PM![]() ![]() |