Log In · Register

 
 
Closed TopicStart new topic
the ad moved with the blog, i want to put it back
starryserendipit...
post Oct 2 2004, 01:49 PM
Post #1


Member
**

Group: Member
Posts: 12
Joined: Aug 2004
Member No: 38,426



i used the code for boxed xanga in xanga scripts and the xanga ad moved with the blog. my xanga please help! i want to put it back at the top.
 
lilphoenix
post Oct 2 2004, 01:50 PM
Post #2


I'm just a little bit crazy...
******

Group: Member
Posts: 1,119
Joined: Jun 2004
Member No: 19,760



looks fine.

it's cause you're the owner of the site, and when you preview it, it looks different.

::edit::
agreed... that is not a boxed xanga.
 
C.Lime.Jello.
post Oct 2 2004, 01:50 PM
Post #3


The voices talk too much... -.-u
******

Group: Member
Posts: 2,099
Joined: Aug 2004
Member No: 39,078



Uh.......
Your Xanga isn't even boxed.
And it looks fine to me.
 
starryserendipit...
post Oct 2 2004, 01:54 PM
Post #4


Member
**

Group: Member
Posts: 12
Joined: Aug 2004
Member No: 38,426



i put up the wrong one! try this: my xanga pinch.gif sorry.
 
lilphoenix
post Oct 2 2004, 01:55 PM
Post #5


I'm just a little bit crazy...
******

Group: Member
Posts: 1,119
Joined: Jun 2004
Member No: 19,760



i see...

can we possibly see your codes and such?
 
starryserendipit...
post Oct 2 2004, 01:57 PM
Post #6


Member
**

Group: Member
Posts: 12
Joined: Aug 2004
Member No: 38,426



Header:
CODE
<!-- begin code provided by createblog.com -->
<div style="left=0; top=50; position=absolute;"><img src=" http://jupiter.walagata.com/w/starryserendipity/untitled.bmp"></div>
<!-- end code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<div style="left=20; top=250; position=absolute;">
<DIV align="left" valign="top" style="BORDER-RIGHT: #transparent 1px solid; BORDER-TOP: #transparent 1px solid; FILTER: alpha(opacity=60); OVERFLOW: auto; BORDER-LEFT: #transparent 1px solid; WIDTH: 700px; BORDER-BOTTOM: #transparent 1px solid; HEIGHT: 470px; BACKGROUND-COLOR:
#ffffff">
<!-- end code provided by createblog.com -->

Web Stats:
CODE
<!-- begin code provided by createblog.com -->
<style type="text/css">
.blogbody b, .standard b, p b, strong {
/* edits bolded text in your entry */
font-weight: bold;
color: #99cc33;
}
</style>
<!-- end code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<script type="text/javascript">
//
// ©2004 EasterEgg
//
// For use at Xanga only.
//
// While the date in your blogheader has a fixed format
// (e.g. "Tuesday, March 16, 2004") you may want to use
// another date format, accustomed to *your* preferences.
// This script enables you to apply pretty much any date
// format to your blogheader you like.
//
// Here's how it works:
// The script collects all blogheaders and applies to them
// a format you define by changing the value of the variable
// "dateFormatStr" in the code below. Currently that value is
// set to 'ddd, mm/dd/yy', which will result in a date that
// looks like this: 'Tue, 03/16/04'. If you want to use slashes
// instead of divisions as date separators, go right ahead; you
// can even add HTML to the date format string if you like!:-)
//
// =================
// listing of available constants (using the date
// "Tuesday, March 16, 2004" as an example):
//
// dd = 16
// ddd = Tue
// dddd = Tuesday
//
// mm = 03
// mmm = Mar
// mmmm = March
//
// yy = 04
// yyyy = 2004
//
// =================
//
// You can use any combination of the above constants. Examples:
//
// 'mm/dd/yyyy' will result in '03/16/2004'
// 'mmm dd, yy' will result in 'Mar 16, 04'
// 'mm-dd-yy (dddd)' will result in '03-16-04 (Tuesday)'
// '{ ddd, mmm dd, yyyy }', will result in '{ Tue, Mar 16, 2004 }'
//
// Get the general idea?;-)
//
// Copy this entire code and paste it in the webstats box of your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains
// intact. Future modifications allowed if due credit is given.
//

function formatEntryDate()
{
   // ***** adjust the dateFormatStr below as you see fit
   // ===================================================
   dateFormatStr = 'dddd.dd.mmmm';
   // ===================================================
   

   function getMonthNr(sMonth)
   {
       months = new Array(
           "January","February","March","April","May","June","July","August","September","October","November","December");
       for (var n = 0; n < months.length; ++n)
       {
           if (months[n] == sMonth)
           {
               if ( n + 1 < 10)
                   return '0' + (n + 1).toString()
               else
                   return (n + 1).toString();
           }
       }
   }

   allDivs = document.getElementsByTagName('div');
   for (var i = 0; i < allDivs.length; ++i)
   {
       if (allDivs[i].className == 'blogheader')
       {
           newDateFormat = dateFormatStr;
           
           // day
           entryDate = allDivs[i].innerHTML;
           dayLong = entryDate.substr(0, entryDate.indexOf(','));  // dddd
           dayShort = dayLong.substr(0, 3);                        // ddd  
           tempStr = entryDate.substr(dayLong.length + 1);
           dayNr = tempStr.substr(tempStr.indexOf(',') - 2, 2);    // dd
           newDateFormat = newDateFormat.replace('dddd', dayLong);
           newDateFormat = newDateFormat.replace('ddd', dayShort);
           newDateFormat = newDateFormat.replace('dd', dayNr);

           // month
           monthLong = tempStr.substr(1, tempStr.indexOf(',') - 3);// mmmm
           monthShort = monthLong.substr(0, 3);                    // mmm
           monthNr = getMonthNr(monthShort);                       // mm
           newDateFormat = newDateFormat.replace('mmmm', monthLong);
           newDateFormat = newDateFormat.replace('mmm', monthShort);
           newDateFormat = newDateFormat.replace('mm', monthNr);

           // year
           yearLong = tempStr.substr(tempStr.indexOf(',') + 2);    // yyyy
           yearShort = yearLong.substr(2);                         // yy
           newDateFormat = newDateFormat.replace('yyyy', yearLong);
           newDateFormat = newDateFormat.replace('yy', yearShort);

           allDivs[i].innerHTML = newDateFormat;
       }
   }
}
formatEntryDate();
</script>
<!-- end code provided by createblog.com -->
<!-- begin code provided by createblog.com -->
<STYLE type="text/css">
/*
top bar remover - xanga.com/add_ons
*/
table.navigation {display: none;};</STYLE>
<!-- end code provided by createblog.com -->
 
C.Lime.Jello.
post Oct 2 2004, 02:03 PM
Post #7


The voices talk too much... -.-u
******

Group: Member
Posts: 2,099
Joined: Aug 2004
Member No: 39,078



M'kay.
I still see nothing wrong.
CODE
<!-- begin code provided by createblog.com -->

<style type="text/css">
.blogbody b, .standard b, p b, strong {
/* edits bolded text in your entry */
font-weight: bold;
color: #99cc33;
}
</style>

<!-- end code provided by createblog.com -->


That goes in your custom header though.
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: