Jessy! <3 TearsOfAFlower37- I beg to dream and differ Naoki-chan Tikiga-chan Taiga-chan Hamlet-chan StarBitter Yuuji dEsTiNeDdReAmS xlady_sakurax Valsephistrife pink_winged_angel When an angel changes into a demon... (archangel_tears) xWhite_Starx yuna7827 Diana yuffie darkpheonixoflight aznanimefan4990 Akira_Avalon Dark Awards Yumi aka xxDark_firexx come walk with me in the twilight… www.xanga.com/fantasyxdreamer
dreams_linkage
read my profile
sign my guestbook

Visit dreams_linkage's Xanga Site!

Name: Marnelli aka
Birthday: 1/18/1991
Gender: Female


Message: message meEmail: email me
Website: visit my website
AIM: pyrochaos951


Member Since: 12/2/2004

SubscriptionsSites I Read

Groups Blogrings
*~*Gravitation Fans*~*
previous - random - next

! - / / rUrOUnI kEnshIn lUvErz/ / - !
previous - random - next

\\**Legends of Fantasy-Shadows of DeSTinY**//
previous - random - next

~`*HikarU UtADa~`*Jpop~`*anime~`*HeaVen~`*
previous - random - next

JPoP, DdR, PuMp It uP, BeMaNi
previous - random - next

*The Kingdom Hearts Blogring*
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site

Sunday, October 09, 2005


music video code by urbnmix.net
the click five - just the girl


Friday, February 11, 2005

Got a new link button. ^^


Thursday, January 27, 2005

My Sora and Riku layout: If you want it, lemme know.

PREVIEW

 


Saturday, December 25, 2004

Button color changes (goes in custom header)

input, select, textarea, iframe.htmleditor, .textfield, .button {
/* this edits the buttons, dropdowns, etc. */
border: 1px solid #FFFFFF;
font:normal 10px font type here;
background-color: #bg color here;
letter-spacing:1px;
color: #font color here;
}

Use the html number color codes or whatever they're called.

>>My previous layout, for those who want to steal it. ((Let me know first! I may move the images and I'll have to tell you the new urls))

((PREVIEW))

Ehh... I worked off an old code that I got off a graphics website cuz I was too lazy to make a new code. So don't be surprised that it has the built-in instruction things in the code.


Wednesday, December 01, 2004

This is my linkage site so every link button I have on my other site (frzndreams951) will be here (obviously).

^^

LATER

btw --

if you somehow found this site through another site (other than my own, frzndreams951 or archangel_tears), please head over to my original site. Thanks!

BUTTONS

Okay coding --
Here's coding I've found around that may be useful for you. It's really quite convenient if you're too lazy to look on your own or if you just can't seem to find it. ^^ Coding requests are available right now, I'll try my best to find what you need. Oh yeah. I need a favor too, really quick. Splash page code?? Please?? Anybody?!

Something else -- Thanks so much to Jessy and twilightdragon04 for helping find a lot of these codes!!! **bows** Thanks very much!!

Linkage box:
<table border="FFFFCC 2px dashed" cellspacing="0" cellpadding="4"
width="204" class="left">
<tr><th valign="top" align="left" class="left">
<b>LINKAGE BOX MESSAGE</b></th></tr>
<tr><td valign="top" class="left">
<img src="IMG URL"><textarea><A href="SITE URL"><img border="0" src="IMG URL" 
alt="HOVER MESSAGE"></A></textarea>
</td></tr></table>

Linkage: (for newbies)
Button link
<a href="URL"><img border="0" src="IMG URL" alt="HOVER MESSAGE"></a>
Text link
<a href="URL">Text goes here blah blah blah</a>

Changing the window title/status:
Title
<script>document.title="title here"</script>
Status
<script>window.status="message here"</script>

Music playlist --
<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
 <param NAME VALUE>
 <param NAME="ShowControls" VALUE="0">
 <param NAME="ShowStatusBar" VALUE="0">
 <param NAME="ShowDisplay" VALUE="0">
 <param NAME="DefaultFrame" VALUE="Slide">
 <param NAME="Autostart" VALUE="1">
 <param NAME="Loop" VALUE="True">
</object>
</p>
<form name="form">
 <p style="text-align: center">
 <select style="FONT-SIZE: 8pt; BACKGROUND:#FFFFFF; WIDTH: 160; COLOR: #00000; font-face: verdana; height:174" name="playlist" size="1">
 <option value="0">Song Title - Artist</option>
 <option value="1">Song Title - Artist</option>
 <option value="2">Song Title - Artist</option>
 </select><br>
 <input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
 <input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.pause(); playstate=2;">
 <input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.stop(); playstate=2;"></p>
</form>


<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1;  // set to 0 to always play first song in list
               // set to 1 to randomly choose the first song to play
   // unlimited songs, just copy and paste the song line and change the number
songs=new Array();
songs[0]="SONGURL HERE"
songs[1]="SONGURL HERE"
songs[2]="SONGURL HERE"

if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
  </script>

Add more songs by adding
 <option value="(number)">Song Title - Artist</option>
and
songs[(number)]="SONG URL"
as many times as necessary. Make sure the number listed before the song title is equivalent to the number listed before that song's url. Paste in Website Stats or Header HTML under Custom Header under Look and Feel (CLAF - Customize the Look and Feel of Your Site) <-- added notes for newbies. ^^

If you need music urls, xanga_music has a lot of useful ones, full version w/ lyrics. Robofish and animelyrics[dot]com has anime/video game midis (just the music, no lyrics). If you are looking for a video game url that is the full version w/ lyrics, I may possibly have a url for you, just ask.

Other stuff --

DIV tables:
Really quite easy once you learn it. If there are more images than I have given url listings (or whatever they're called), just copy the one above it (just change the url to the next one you need) and paste it underneath. Hope you'll be able to figure it out, ne? (right, in japanese, just in case you didn't know... ^^)

If the images are split horizontally (as in stacking on top of each other to form the full image), you'll need this kind of coding-
<div align="center" style="position:static; align: margin-top: -35px;border: 0px solid #000000; width: **adjust to width of full image**px; height: **adjust to height of full image**;background: none;overflow: auto;">
<TABLE WIDTH=**adjust to width of full image** BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR><TD><IMG SRC="img url (top)"></TD></TR>
<TR><TD><IMG SRC="img url"></TD></TR>
<TR><TD><IMG SRC="img url"></TD></TR>
<TR><TD><IMG SRC="img url (bottom)"></TD>
</TR>
</TABLE>
</div>

If the image is split vertically, you'll use this kind:
<div align="center" style="position:static; align: margin-top: -35px;border: 0px solid #000000; width: **adjust to width of full image**px; height: **adjust to height of full image**;background: none;overflow: auto;">
<TABLE WIDTH=**adjust to width of full image** BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR><TD><IMG SRC="img url (left)"></TD>
<TD><IMG SRC="img url"></TD>
<TD><IMG SRC="img url"></TD>
<TD><IMG SRC="img url (right)"></TD>
</TR>
</TABLE>
</div>

Now if it is split into a grid, this is where it gets a little complicated. You'll use the same coding as the one above, but everytime to get to the end of a row, add "</TR>" and "<TR>" to the next one. Example:

<TR>
<TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_1x1.jpg"></TD>
<TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_1x2.jpg"></TD>
<TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_1x3.jpg"></TD></TR>
<TR><TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_2x1.jpg"></TD>
<TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_2x2.jpg"></TD>
<TD><IMG SRC="http://img.photobucket.com/albums/v459/shadow852hearts/layout2_2x3.jpg"></TD></TR>

This is a part of my div image. It is a 3x3 grid, and if you notice, there is an added thing in the coding. After the 3rd url, there is a "</TR>" and then a "<TR>" right before the next image. This is to keep the image in alignment as well as in a table. The "<TR>" and "</TR>" move the images to a new row. (I learned this the hard way, since I was a div newbie. XP)

Now if you need more coding for more urls:
horizontal -
     <TR><TD><IMG SRC="img url"></TD></TR>
vertical -
     <TD><IMG SRC="img url"></TD>
and use a combo of both for grid divs.

Templates (from SilverOracle[dot]com):
88x31 buttons
    
    
 
50x50 avatars
      
200x40 banners
 
 

Whew. If you want more templates, delusive-dreams has a lot. Just explore there.

Remember -- requests are being taken now, I'll do my best! I may help with graphics as well!!



Insostituibile: Sora and Riku Fanlisting Land and Sky o.O Adore Utada Hikaru!!! (UH Fanlisting) Sapphire@Soundless-Words.net: Anime Graphix Cloud//Zack Fanlisting Death Penalty: Vincent Valentine Fanlisting Forgotten Fantasy Final Fantasy Extreme Kingdom Hearts 2 Women of Final Fantasy Fanlisting Cloud Stife Fanlisting Final Fantasy Summons Fanlisting CloudxTifa Hatelist Final Fantasy X-2 Fanlisting Cloud//Zack//Sephiroth Fanlisting Silver Wings: Tidus and Yuna Fanlisting Kingdom Hearts Cloud Fanlisting Kingdom Hearts Fanlisting Kingdom Hearts Characters Fanlisting Simple and Clean/Hikari Fanlisting Final Fantasy VII Fanlisting Final Fantasy X Fanlisting Rikku Fanlisting Sephiroth Fanlisting Scarred Soul: Kenshin Himura Fanlisting Comic Party Fanlisting Unspoken: SanoxMegumi Fanlisting Paladin: Souzou Sagara Fanlisting Sp/lit Personality: Hatsuharu Sohma Fanlisting Nekozumi: Kyo Sohma Fanlisting What Becomes of Snow? Hatori Sohma Fanlisting Prince YUKI: Yuki Sohma Fanlisting It's GRAVITATION: Yuki and Shuichi Fanlisting Eiri Yuki - Gravitation fanlist Vote for me, Wingless Fallen Angels Nittle Grasper Anime Flowers graphics

<bgsound src="http://www.nicemice.net/amc/music/songs/puffy/tokyou-naitsu/clip.mp3" loop="infinite">