• ARCHIVES 
  • » plzzz....a finished code...i begging u all

Pages: 1

plzzz....a finished code...i begging u all

JeFF28
» n00b
FTalk Level: zero
4
0
1969-12-31

plzzz....a finished code...i begging u all

plzzz....a finished code...i begging u all
edhoxt
» n00b
FTalk Level: zero
82
0
1969-12-31

Re: plzzz....a finished code...i begging u all

<HTML> <HEAD> <TITLE>• Naruto Profile •</TITLE> <style type="text/css"> a:link { text-decoration: none; color:#D56116} a:active { text-decoration: none; color:#D56116} a:visited { text-decoration: none; color:#D56116} a:hover { text-decoration: none; color:#D56116} html,body{ font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#D56116; font-weight: bold; scrollbar-track-color:#8B8970; scrollbar-arrow-color:#ffffff; scrollbar-base-color:#8B8970; } /** images **/ .ir img { height:75px; width:75px; border:#B74A00 0px solid; } .ir a:hover img { filter:alpha(Opacity=50,FinishOpacity=0,Style=0); } /** caption **/ .dr a { font-family: century gothic, verdana; font-size: 9px; text-align: center; text-decoration: none; color: black; } .dr a:hover { font-weight: bold; } .flogriditem { padding-bottom: 5px; padding-top: 5px; } #aut{width:100%; font-size:11px; color:#D56116; padding:0px 5px 0px 5px; verflow:hidden;} .left_column_testimonials IMG{width:100px; border:none; !important; margin-right:5px !important;} .imgblock75 img{ width:100px; overflow: hidden; border:#D56116 0px solid; margin: 0 auto; } .itd{ vertical-align:top; } /** testimonial contents **/ .dtd{ padding-left:9px; padding-bottom:10px; margin-bottom:0px; margin-left: 5px; margin-right: 5px; text-align:left font-size: 9px; color:#D56116; } /** names **/ .title a:visited, .title a:link{ text-decoration:none; color:#D56116!important; font-size:9px; font-weight: bold; } .title a:hover{ color:#D56116!important; text-decoration: none; font-weight: bold; } /** view all and add a testimonial links **/ .viewall a{ font-size: 9px; color: #D56116 !important; text-decoration: none; padding: 2px; } .viewall a:hover{ text-decoration: none; color:#D56116!important; font-weight: bold; } .viewall{ text-align:center!important; } h2{ display:none; } .data li{ list-style-type:none; } .data{ padding:0; margin:0; } </style> </HEAD> <BODY BGCOLOR=#000000 LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 backgroundcolor="#000000"> <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0> <TD ROWSPAN=3> <IMG SRC="http://img268.imageshack.us/img268/7010/bgbn0.jpg" WIDTH=178 HEIGHT=0></TD> <TD> <IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/n1.gif" WIDTH=674 HEIGHT=237 BORDER=0 ALT="" USEMAP="#naruto_Map"></TD> </TR> <TR> <TD> <IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/n2.gif" WIDTH=674 HEIGHT=285 ALT=""></TD> </TR> <TR> <TD> <IMG SRC="http://i106.photobucket.com/albums/m263/xtian26/n3.gif" WIDTH=674 HEIGHT=268 BORDER=0 ALT="" USEMAP="#footer_Map"></TD> </TR> </TABLE> <script type="text/javascript" src="http://www.freewebtown.com/siot/scripts/alert.js"></script> <script language="javascript"> var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1 var title=document.title var leng=title.length var start=1 function titlemove() { titl=title.substring(start, leng) + title.substring(0, start) document.title=titl start++ if (start==leng+1) { start=0 if (repeat==0) return } setTimeout("titlemove()",140) } if (document.title) titlemove()</script> <script language="javascript"> var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1 var title=document.title var leng=title.length var start=1 function titlemove() { titl=title.substring(start, leng) + title.substring(0, start) document.title=titl start++ if (start==leng+1) { start=0 if (repeat==0) return } setTimeout("titlemove()",140) } if (document.title) titlemove()</script> <script language="javascript"> <!--// Copyright 1996 - Tomer and Yehuda Shiran // This example will appear in our forthcoming book on JavaScript. // Feel free to "steal" this code provided that you leave this notice as is. // Additional examples from the book can be found at http://www.geocities.com/SiliconValley/9000/ // For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com> // set speed of banner (pause in milliseconds between addition of new character) var speed = 10 // decrease value to increase speed (must be positive) // set pause between completion of message and beginning of following message var pause = 1500 // increase value to increase pause // set initial values var timerID = null var bannerRunning = false // create array var ar = new Array() // assign the strings to the array's elements ar[0] = "Welcome to my Friendster Profile" ar[1] = "I hope you like my design" ar[2] = "Pls leave a message on the Shout Out Box!" ar[3] = "Don't forget to give me a testi Thanx!" // assign index of current message var message = 0 // empty string initialization var state = "" // no value is currently being displayed clearState() // stop the banner if it is currently running function stopBanner() { // if banner is currently running if (bannerRunning) // stop the banner clearTimeout(timerID) // timer is now stopped timerRunning = false } // start the banner function startBanner() { // make sure the banner is stopped stopBanner() // start the banner from the current position showBanner() } // assign state a string of "0" characters of the length of the current message function clearState() { // initialize to empty string state = "" // create string of same length containing 0 digits for (var i = 0; i < ar[message].length; ++i) { state += "0" } } // display the current message function showBanner() { // if the current message is done if (getString()) { // increment message message++ // if new message is out of range wrap around to first message if (ar.length <= message) message = 0 // new message is first displayed as empty string clearState() // display next character after pause milliseconds timerID = setTimeout("showBanner()", pause) } else { // initialize to empty string var str = "" // built string to be displayed (only character selected thus far are displayed) for (var j = 0; j < state.length; ++j) { str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " " } // partial string is placed in status bar window.status = str // add another character after speed milliseconds timerID = setTimeout("showBanner()", speed) } } function getString() { // set variable to true (it will stay true unless proven otherwise) var full = true // set variable to false if a free space is found in string (a not-displayed char) for (var j = 0; j < state.length; ++j) { // if character at index j of current message has not been placed in displayed string if (state.charAt(j) == 0) full = false } // return true immediately if no space found (avoid infinitive loop later) if (full) return true // search for random until free space found (braoken up via break statement) while (1) { // a random number (between 0 and state.length - 1 == message.length - 1) var num = getRandom(ar[message].length) // if free space found break infinitive loop if (state.charAt(num) == "0") break } // replace the 0 character with 1 character at place found state = state.substring(0, num) + "1" + state.substring(num + 1, state.length) // return false because the string was not full (free space was found) return false } function getRandom(max) { // create instance of current date var now = new Date() // create a random number (good generator) var num = now.getTime() * now.getSeconds() * Math.random() // cut random number to value between 0 and max - 1, inclusive return num % max } startBanner() // --></script> <!---------------------------------> <!------- Edit ABOUT YOU ----------> <!---------------------------------> <div style="filter:alpha(opacity=100,finishopacity=100,style=1); background-color:transparent; width:222px; height:208px; border:0px inset #D56116; overflow:auto; font-weight:bold; color:#D56116; text-align:left; position:absolute; top:139px; left:403px;z-index:10"> <img style="filter:alpha(opacity=100,finishopacity=50,style=2)" src "http://img225.imageshack.us/img225/8950/35923329948546sbj2.jpg"><br> Name: AJHIER_EDHOXT<br> Age: 16 NOVEMBER 1986<br> Gender: MALE<br> Hometown: MAKASSAR<br> Country: INDONESIA<br> Zodiac: SCORPIO<br> Status: SINGLE<br> Email: lp_x_dp@yahoo.com</p> MORE ABOUT ME:<p> Schools (Other): STMIK DIPANEGARA<br> Affiliations: NO<br> Hobbies and Interests: NGUPIL,TERMENUNG,ARTCOHOLIC<br> Favorite Movies: BEATIFULL MIND,MOVIE YANG MASUK AKAL AJA!!<br> Favorite Music: EMO,ROCK N ROLL,SEMUANA DAH YANG ENAK DI DENGAR<br> About me:<br> BIASA AJA GA' ADA YANG BISA DI BANGGAKAN APA ADANYA </div> <!-------------------------------------------> <!------- LINKS CHANGE YOURUSERRID ----------> <!-------------------------------------------> <div style="FILTER:alpha(opacity=100,finishopacity=100,style=3);DIRECTION:ltr;background-color:transparent; width:169px; height:172px; border:0px inset D56116; overflow:hidden; font-weight:BOLD; color:#D56116; text-align:center; position:absolute; top:146px; left:200px; PADDING-LEFT:5;"> <a href="http://www.friendster.com/testimonials.php?uid=ajhier"> View All Testimonials</a><br> <a href="http://www.friendster.com/friends.php?uid=ajhier"> View All Friends</a><br> <a href="http://www.friendster.com/viewphotos.php?uid=ajhier"> View All Photos</a><br> <a href="http://www.friendster.com/sendmessage.php?uid=ajhier"> Send a Message</a><br> <a href="http://www.friendster.com/sendmessage.php?uid=YOURUSERRID&action=sendsmile">Send a Smile</a><br> <a href="http://www.friendster.com/testimonials.php?action=add&uid=ajhier"> Add a Testimonial</a><br> <a href="http://www.friendster.com/bookmarks.php?action=add&uid=ajhier"> Bookmark</a><br> <a href="http://www.friendster.com/referafriend.php?refer=ajhier"> Forward to Friend</a><br> <a href="http://www.friendster.com/introduce.php?uid=ajhier"> Introduce to Friend</a> <script language=javascript> FAlink="yes"; FAucode="Add as Friend"; </script> <div id=FAlinkid></div> </div> <!-------------------------------------------> <!------- Friends Photo Marquee -------------> <!-------------------------------------------> <div style="filter:alpha(opacity=0,finishopacity=100,style=1);background-color:transparent;width:349px; height:90px; border:0px inset #FFFFFF; overflow:hidden; font-weight:bold; color:#FFFFFF; text-align:left; position:absolute; top:382px; left:448px; PADDING-LEFT:5;"> <marquee direction=left scrollamoung=2 onmouseover=this.stop() onmouseout=this.start()> <a href="http://www.friendster.com/28324290"> <img src="http://img225.imageshack.us/img225/8950/35923329948546sbj2.jpg" border=0></a> <a href="http://www.friendster.com/28324290"> <img src="http://img225.imageshack.us/img225/8950/35923329948546sbj2.jpg" border=0></a> </marquee> </div> <!-------------------------------------------> <!----- Cbox Resize With Height="270" -------> <!-------------------------------------------> <div style="background-color:transparent;width:163px; height:347px; border:0px inset #FFFFFF; overflow:hidden; font-weight:bold; color:#000000; text-align:left; position:absolute; z-index:2;top:360px;left:203px; ;z-index:40;SCROLLBAR-FACE-COLOR: #202020"> <!-- BEGIN CBOX - http://www.cbox.ws --> <table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center"> <tr><td align="center"> <iframe frameborder="0" width="160" height="270" src="http://www3.cbox.ws/box/?boxid=2378897&boxtag=2541&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border: 0px solid;" id="cboxmain"></iframe> </td></tr><tr><td align="center"> <iframe frameborder="0" width="160" height="75" src="http://www3.cbox.ws/box/?boxid=2378897&boxtag=2541&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border: 0px solid; border-top: 0px;" id="cboxform"></iframe> </td></tr> </table> <!-- END CBOX --> </div> <!----------------------------> <!----- Auto Testi Box -------> <!----------------------------> <div style="filter:alpha(opacity=100,finishopacity=100,style=1); background-color:transparent; width:347px; height:222px; border:0px inset #FFFFFF; overflow:auto; font-weight:bold; color:#D56116; text-align:left; position:absolute; top:503px; left:455px;z-index:50"> <script language="javascript"> autotesti="yes"; </script> <div id=AUT class=left_column_content style="width:285px "></div> </font> </div> <!------------------------> <!----- MP3 Player -------> <!------------------------> <div style="position:absolute; overflow:hidden; left:654px; top:140px; width:179px; height:210px; z-index:60"> <embed src="http://webjay.org/flash/xspf_player?autoload=1&autoplay=1&playlist_url=http://webjay.org/by/ifidiealone/getyourcakeup.xspf" quality="high" bgcolor="e6e6e6" width="160" height="200" name="xspf_player" align="middle" type="application/x-shockwave-flash"/></div> <!------------------------> <!----- FLASH CLOCK -------> <!------------------------> <div style="position:absolute; overflow:hidden; left:464px; top:12px; width:107px; height:27px; z-index:70"> <embed src='http://f.friendster-tweakers.com/rsc/swf/clock/fsdo.swf' wmode="transparent" quality='high' width='106' height='26' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/></p> </div> <MAP NAME="naruto_Map"> <AREA SHAPE="rect" ALT="" COORDS="514,42,611,55" HREF="http://www.friendster.com/28324290"> <AREA SHAPE="rect" ALT="" COORDS="526,68,602,87" HREF="http://www.friendster.com/logout.php"> <AREA SHAPE="rect" ALT="" COORDS="423,69,484,87" HREF="http://www.friendster.com/blogs.php"> <AREA SHAPE="rect" ALT="" COORDS="296,70,378,86" HREF="http://www.friendster.com/friends.php"> <AREA SHAPE="rect" ALT="" COORDS="181,68,262,86" HREF="http://www.friendster.com/user.php"> <AREA SHAPE="rect" ALT="" COORDS="72,70,127,87" HREF="http://www.friendster.com/"> <MAP NAME="footer_Map"> <AREA SHAPE="rect" ALT="" COORDS="61,18,239,44" HREF="http://www.friendster.com/"> <AREA SHAPE="rect" ALT="" COORDS="537,744,620,756" HREF="http://www.friendster.com/info/privacy.php?statpos=footer"> <AREA SHAPE="rect" ALT="" COORDS="425,745,528,755" HREF="http://www.friendster.com/info/tos.php?statpos=footer"> <AREA SHAPE="rect" ALT="" COORDS="386,744,415,755" HREF="http://www.friendster.com/custhelp.php?statpos=footer"> <AREA SHAPE="rect" ALT="" COORDS="261,746,375,756" HREF="http://www.friendster.com/affiliate.php?statpos=footer"> <AREA SHAPE="rect" ALT="" COORDS="208,746,250,756" HREF="http://classifieds.friendster.com/us/ListAds/Event/"> <AREA SHAPE="rect" ALT="" COORDS="130,745,197,756" HREF="http://www.friendster.com/info/contacts.php?statpos=footer"> <AREA SHAPE="rect" ALT="" COORDS="66,746,121,755" HREF="http://www.friendster.com/info/index.php?statpos=footer"> </MAP> </BODY> </HTML>
deburah
» n00b
FTalk Level: zero
1
0
1969-12-31

Re: plzzz....a finished code...i begging u all

<"><"><">
fando91
» FTalkManiac
FTalk Level: zero
862
0
1969-12-31

Re: plzzz....a finished code...i begging u all

[b]SPAMS! :midfinger: [/b]
master_jareth2000
» FTalker
FTalk Level: zero
110
0
1969-12-31

Re: plzzz....a finished code...i begging u all

[quote]nxt tym edhoxt.please put your codes on the code box.[/quote] [quote]and to the thread starter.please refer on the premade layout for overlay.put your question or request there.[/quote]

Last edited by master_jareth2000 (2007-12-03 05:14:18)

master_jareth2000
» FTalker
FTalk Level: zero
110
0
1969-12-31

Re: plzzz....a finished code...i begging u all

[quote]nxt tym edhoxt.please put your codes on the code box.[/quote]
lilprincess950
» FTalkManiac
FTalk Level: zero
771
0
1969-12-31

Re: plzzz....a finished code...i begging u all

[quote=deburah]<"><"><">[/quote] AYEEE!!!![b]STOP SPAMMING![/b] :midfinger: :midfinger:
lilprincess950
» FTalkManiac
FTalk Level: zero
771
0
1969-12-31

Re: plzzz....a finished code...i begging u all

[quote=JeFF28]plzzz....a finished code...i begging u all[/quote] Here's one by "eMokIdD" Preview: :thumbsdown: [img]http://i225.photobucket.com/albums/dd56/musik4life950/Snap1-1.jpg[/img] <">Here's another one by"FeenQueGurl_08" Preview: :thumbsdown: [img]http://i225.photobucket.com/albums/dd56/musik4life950/Snap1.jpg[/img] You have to download that one.Here's the link to download it. http://theftalk.com/t1539-Dark-Layout-hehehe-%5E%5E...html Just open a notepad and edit the parts that are editable. Enjoy!
  • ARCHIVES 
  • » plzzz....a finished code...i begging u all

Pages: 1

Board footer

© 2024 F Talk

Current time is 11:15

[ 10 queries - 0.016 second ]
Privacy Policy