Pages: 1

  2008-12-23 08:06:12

rhoswell
» n00b
FTalk Level: zero
1
0
1969-12-31

sorry, i'm newbie here.... would u please tell me how to put the codes of overlay layout to my profile? thanks so much

can u help me pls wat should i edit can u hi light the part that i should edit thank,, <html> <head> <style type="text/css"> .cboxButtons { background-color: #000000; border-color: #FFFFFF; color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; } .cboxMsgArea { padding:2px 2px 2px 2px; width:165px; height:75px; background-color: #000000; border: #000000 1px solid; color: FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-weight: normal;} </style> <title> I give you my heart - More cool layouts at http://kilometer-69.com</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Page-Enter" content="BlendTrans(Duration=1.5)"> <meta http-equiv="Site-Exit" content="BlendTrans(Duration=1.5)"> </head> <style type="text/css"> /** pics **/ .imgblock75 img{ height:80px; width:80px; overflow: hidden; border:#FFFFFF 0px solid; margin: 0 auto; } .imgblock75 a:hover img { border:#FFFFFF 0px solid; } .itd{ vertical-align:top; } /** testimonial contents **/ .dtd{ padding-left:10px; padding-bottom:10px; margin-bottom:0px; margin-left: 5px; margin-right: 5px; text-align:justify; text-decoration:none; color:#FFFFFF!important; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; } /** names **/ .title a:visited, .title a:link{ text-decoration:none; color:#FFFFFF!important; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; } .title a:hover{ color:#FFFFFF!important; text-decoration: none; font-weight:bold; font-size:10px; font-family: Verdana, Arial, Helvetica, sans-serif; } /** view all and add a testimonial links **/ .viewall a{ font-size: 11px; color: #FFFFFF !important; text-decoration: none; font-size:10px; font-weight:bold; font-family: Verdana, Arial, Helvetica, sans-serif; padding: 2px; } .viewall a:hover{ font-size:10px; text-decoration: none; color:#FFFFFF!important; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; } .viewall{ font-size:10px; text-decoration: none; color:#FFFFFF!important; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif; } h2{ display:none; } .data li{ list-style-type:none; } .data{ padding:0; margin:0; } </style> <style type="text/css"> BODY { SCROLLBAR-FACE-COLOR: #000000; SCROLLBAR-HIGHLIGHT-COLOR: #000000; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #000000; SCROLLBAR-ARROW-COLOR: #FFFFFF; SCROLLBAR-TRACK-COLOR: #000000; SCROLLBAR-DARKSHADOW-COLOR: #000000; cursor: url("http://www.freewebs.com/elvolution/misc/elvocursor.cur"),default; } td, tr, div { FONT-SIZE: 10px; COLOR: #FFFFFF; FONT-FAMILY: Tahoma;} a, a:link, a:visited, a:active { color:#AB906C; font-weight: normal; text-decoration: none; border-bottom:0px; font-style: normal; } a:hover { color:#FFFFFF; font-weight: bold; text-decoration: none; border-bottom:0px; font-style: normal; } </style> <script type="text/javascript"> function clickToggle(target) { obj=(document.all) ? document.all[target] : document.getElementById(target); obj.style.display=(obj.style.display=='none') ? '' : 'none'; } </script> <script language="javascript"> // if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu() { event.cancelBubble = true, event.returnValue = false; return false; } function norightclick(e) { if (window.Event) { if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true, event.returnValue = false; return false; } } if (document.layers) document.captureEvents(Event.MOUSEDOWN); document.oncontextmenu = nocontextmenu; document.onmousedown = norightclick; document.onmouseup = norightclick; //--> </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 [url]http://www.geocities.com/SiliconValley/9000/[/url] // 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 Chatterbox" 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> <body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <!-- ImageReady Slices (igivumyheart.psd) --> <img src="http://i247.photobucket.com/albums/gg129/chiro23/igivumyheart2.gif" width="980" height="700" border="0" alt="" usemap="#igivumyheart_Map"> <map name="igivumyheart_Map"> <area shape="rect" alt="" coords="871,604,920,616" href="http://USERBLOGNAME.blogs.friendster.com/my_blog/"> <area shape="rect" alt="" coords="780,606,843,615" href="http://www.friendster.com/viewphotos.php?uid=USERID"> <area shape="rect" alt="" coords="691,604,752,615" href="http://www.friendster.com/friends.php?uid=USERID"> <area shape="rect" alt="" coords="577,602,660,614" href="http://www.friendster.com/bookmarks.php?action=add&uid=USERID"> <area shape="rect" alt="" coords="837,585,895,597" href="http://www.friendster.com/sendmessage.php?uid=34979390&action=sendsmile"> <area shape="rect" alt="" coords="729,582,807,594" href="http://www.friendster.com/testimonials.php?action=add&uid=USERID"> <area shape="rect" alt="" coords="646,583,718,593" href="http://www.friendster.com/sendmessage.php?uid=USERID"> <area shape="rect" alt="" coords="575,574,618,588" href="http://www.friendster.com/addfriendrequest.php?uid=USERID"> <area shape="rect" alt="" coords="856,51,933,68" href="http://www.friendster.com/index.php?logout=1"> <area shape="rect" alt="" coords="679,51,747,68" href="http://www.friendster.com/friends.php"> <area shape="rect" alt="" coords="467,46,560,65" href="http://www.friendster.com/messages.php"> <area shape="rect" alt="" coords="260,46,332,68" href="http://www.friendster.com/user.php"> <area shape="rect" alt="" coords="90,48,138,68" href="http://www.friendster.com/home.php"> </map> <!-- End ImageReady Slices --> </body> <!------------ CREATE YOUR OWN CBOX ACCOUNT AND EDIT THE CBOX URL BELOW ----------------------------------------------> <div style="position:absolute; left:377px; top:113px; width:165px; height:325px; z-index:0; overflow: HIDDEN;"> <!-- BEGIN CBOX - [url]http://www.cbox.ws[/url] --> <table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center"> <tr><td align="center"> <iframe frameborder="0" width="165" height="325" src="CBOX URL HERE" marginheight="2" marginwidth="0" scrolling="auto" allowtransparency="yes" name="seebox" style="border: 0px solid;" id="seebox"></iframe><br> </td></tr> </table> </div> <div style="padding-right:10;overflow:hidden;height:98;width:165;position:absolute;left:382;top:486"> <table border="0" cellpadding="0" cellspacing="0" summary="cbox tagboard" align="center"> <tr> <td align="center"> <div id="cboxap"></div> </td></tr> </table> </div> <!-- END CBOX --> <script language="javascript"> capboxid=CBOX ID; capboxtag=CBOX TAG; capmodule="pst"; cap="activate"; </script> <!------------END ----------------------------------------------> <!------------ CREATE YOUR OWN "2ND" CBOX ACCOUNT (FOR PROFILE VIEWS) AND EDIT THE CBOX URL BELOW ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:760px; top:95px; width:169px; height:135px; z-index:0"> <!-- BEGIN CBOX - [url]http://www.cbox.ws[/url] --> <iframe frameborder="0" width="167" height="105" src="2ND CBOX URL HERE" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmainche" style="border: 0px solid;" id="cboxmainche"></iframe><br> <!-- END CBOX --> </div> <script language="javascript"> boxid=2ND CBOX ID; boxtag=2ND CBOX TAG; wvcbox="yes"; wvcboxmodule="pst"; </script> <div id="wvcboxel" style="display:none"></div> <!------------END ----------------------------------------------> <!------------ INSERT URL PIX ----------------------------------------------> <div style="position:absolute; left:80px; top:103px; width:224px; height:241px; z-index:0; overflow: auto;"><center><br><br><br> <marquee behavior=scroll scrollamount=5 height="140"> <a href="URLSITE"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE"><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> <a href="URLSITE" ><img style="filter:alpha(opacity=100,finishopacity=0,style=2)" src="http://i36.photobucket.com/albums/e25/bajoyski3/wallpapers/your_picture.gif" width="130" height="120" alt="Hello"></a> </marquee><br> <!------------ EDIT THE INFO BELOW ----------------------------------------------> Name : Edit this part <br> Age : Edit this part <br> Gender : Edit this part <br> Status : Edit this part <br> Hometown : Edit this part<br> Location : Edit this part<br> Schools : Edit this part <br> Hobbies : Edit this part <br> BirthDate : Edit this part <br> Affiliates : Edit this part<br> Religion : Edit this part<br> </center> </div> <!------------END ----------------------------------------------> </center> </div> <!------------ STOP! DON"T EDIT ----------------------------------------------> <!----Testimonial box------> <div id="content_18" style="position:absolute; left:60px; top:378px; width:273px; height:256px; z-index:3; overflow: auto;"></div> <script language="javascript"> module18="yes"; </script> <!----end------> <div style="position:absolute; overflow:auto; left:360px; top:621px; width:361px; height:44px; z-index:0"> <span class="style22"><a href="http://www.friendster.com/info/index.php?statpos=footer"><center> About Us</a> | <a href="http://www.friendster.com/info/contacts.php?statpos=footer"> Contact Us</a> | <a href="http://www.friendster.com/events.php?statpos=footer"> Events</a> | <a href="http://www.friendster.com/affiliate.php?statpos=footer"> Promote My Profile</a> | <a href="http://www.friendster.com/custhelp.php?statpos=footer"> Help</a> | <a href="http://www.friendster.com/info/tos.php?statpos=footer"> Terms of Service</a> | <a href="http://www.friendster.com/info/privacy.php?statpos=footer"> Privacy Policy</a><br> Copyright © 2002-2006 Friendster, Inc. All rights reserved. Patent Pending.</span></center></div> <!------------END ----------------------------------------------> <!------------YOU CAN CHANGE THE SONG URL ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:564px; top:82px; width:188px; height:135px; z-index:0"> <center><embed src="http://www.myflashfetish.com/fetish-mp3player.swf?myid=372267&mycolor=0xab906c&mycolor2=0x0&mycolor3=0xab906c&autop lay=true&rand=1" menu="false" quality="best" scale="noscale" bgcolor="#ffffff" wmode="transparent" width="188" height="135" name="MyFlashFetish.com" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></center> </div> <!------------END ----------------------------------------------> <div style="position:absolute; overflow:hidden; left:690px; top:382px; width:169px; height:135px; z-index:0"> <marquee style="width:169;height:135;border:0px solid black;" direction="up" scrollamount="2" scrolldelay="80" onMouseOver="this.stop()" onMouseOut="this.start()"> <p align="center"> <font color="#FFFFFF" face="comic sans"><BR> <!------------CHANGE THE POEM IF U LIKE ----------------------------------------------> I give you my heart,mind,body, and soul<BR><BR> I give you my love, for you to make me whole<BR><BR> I give you this promise, the promise to try<BR><BR> I give you each breath and the tears i cry<BR><BR> I give you my past, my future and NOW<BR><BR> I give you my thoughts and my hopes in this Vow<BR><BR> I give you my voice and the music i sing<BR><BR> I give you forever by accepting this ring<BR><BR> I give you my world all the pain and strike<BR><BR> I give you my hand and learn to share life<BR><BR> I give you this kiss and there words i say<BR><BR><BR> "I'll Cherish you always as of this day"<BR><BR> I give you my faith that these words are tru from now until the end i promise to you... <!------------END ----------------------------------------------> </marquee></p> </div> <!------------ STOP! DON"T EDIT ----------------------------------------------> <embed style="border:1px inset #FFFFFFF;z-indez:50;filter:alpha(opacity=100,finishopacity=100,style=2);position:absolute;top:3; left:840" src='http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf' wmode="transparent" quality='high' width='108' height='26' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'/> <script language="javascript"> starget="yes"; stargetvisit=5; </script> <div id="stargetid" style="display:none"></div> <SCRIPT language=JavaScript> <!-- /* Dancing Stars cursor (Submitted by Kurt at kurt.grigg@virgin.net) Modified and permission granted to Dynamic Drive to feature script in archive For full source, usage terms, and 100's more DHTML scripts, visit [url]http://dynamicdrive.com[/url] */ if (document.all){ document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">') for (xy=0;xy<7;xy++) document.write('<div style="position:relative;width:3px;height:3px;background:#a979d6;font-size:2px;visibility:visible"></div>') document.write('</div>') } if (document.layers) {window.captureEvents(Event.MOUSEMOVE);} var yBase = 200; var xBase = 200; var yAmpl = 10; var yMax = 40; var step = .2; var ystep = .5; var currStep = 0; var tAmpl=1; var Xpos = 1; var Ypos = 1; var i = 0; var j = 0; if (document.all) { function MoveHandler(){ Xpos = document.body.scrollLeft+event.x; Ypos = document.body.scrollTop+event.y; } document.onmousemove = MoveHandler; } else if (document.layers) { function xMoveHandler(evnt){ Xpos = evnt.pageX; Ypos = evnt.pageY; } window.onMouseMove = xMoveHandler; } function animateLogo() { if (document.all) { yBase = window.document.body.offsetHeight/4; xBase = window.document.body.offsetWidth/4; } else if (document.layers) { yBase = window.innerHeight/4 ; xBase = window.innerWidth/4; } if (document.all) { var totaldivs=document.all.starsDiv.all.length for ( i = 0 ; i < totaldivs ; i++ ) { var tempdiv=document.all.starsDiv.all[i].style tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10); tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10); } } else if (document.layers) { for ( j = 0 ; j < 7 ; j++ ) { var templayer="a"+j document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10); document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10); } } currStep += step; setTimeout("animateLogo()", 15); } animateLogo(); // --> </SCRIPT> </html> thnksss

Pages: 1

Board footer

© 2025 F Talk

Current time is 21:01

[ 12 queries - 0.016 second ]
Privacy Policy