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!! |