:: Hide Codes Galore ::
Would you like to react to this message? Create an account in a few clicks or log in to continue.

:: Hide Codes Galore ::


 
HomeHomeRulesLatest imagesGallerySearchRegisterLog in

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel

View previous topic View next topic Go down
Go to page : 1, 2, 3  Next
Author Message
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 2:46 pm

Credits to~>Dynamic drive,dij8,me^

LIVE preview CLICK HERE FOR THE LIVE PREVIEW^

Browser compatibility : IE,FF,SAFARI,And whatever browser that u are using LOL

First Choose an image..for exampleIMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Zyc1ow

*Save it to yer Computer

*Then upload the image to yer hosting site like (ripway,fileave,stormpages,etc)

*You can use two images^^..but i only use 1 image xD

*Then get the url of the image you uploaded earlier

EXAMPLE
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 21khw74

Then create a new text file then put this code in..save it as .css

Code:
h1 {
  color:#cc3333;
  font-family:"Comic Sans MS",Helvetica;
}
h3 {
  color:#993333;
  font-family:"Comic Sans MS",Helvetica;
}
.kisser {
  position:absolute;
  top:0;
  left:0;
  visibility:hidden;
}

This code can change the font,color,size of ur name on ur control panel

LIVE PREVIEW http://profiles.friendster.com/81008314

then save it..then create a text file or if you already have a .js file put this in

Code:
//Kissing trail- By dij8 (dij8@dij8.com)
//Modified by Dynamic Drive for bug fixes
//Visit http://www.dynamicdrive.com for this script

kisserCount = 15 //maximum number of images on screen at one time
curKisser = 0 //the last image DIV to be displayed (used for timer)
kissDelay = 1000 //duration images stay on screen (in milliseconds)
kissSpacer = 50 //distance to move mouse b4 next heart appears
theimage = "URL OF THE FILE OF UR IMAGE" //the 1st image to be displayed
theimage2 = "URL OF THE FILE OF UR IMAGE" //the 2nd image to be displayed


//Browser checking and syntax variables
var docLayers = (document.layers) ? true:false;
var docId = (document.getElementById) ? true:false;
var docAll = (document.all) ? true:false;
var docbitK = (docLayers) ? "document.layers['":(docId) ? "document.getElementById('":(docAll) ? "document.all['":"document."
var docbitendK = (docLayers) ? "']":(docId) ? "')":(docAll) ? "']":""
var stylebitK = (docLayers) ? "":".style"
var showbitK = (docLayers) ? "show":"visible"
var hidebitK = (docLayers) ? "hide":"hidden"
var ns6=document.getElementById&&!document.all
//Variables used in script
var posX, posY, lastX, lastY, kisserCount, curKisser, kissDelay, kissSpacer, theimage
lastX = 0
lastY = 0
//Collection of functions to get mouse position and place the images
function doKisser(e) {

  posX = getMouseXPos(e)
  posY = getMouseYPos(e)
  if (posX>(lastX+kissSpacer)||posX<(lastX-kissSpacer)||posY>(lastY+kissSpacer)||posY<(lastY-kissSpacer)) {
    showKisser(posX,posY)
    lastX = posX
    lastY = posY
  }
}
// Get the horizontal position of the mouse
function getMouseXPos(e) {
  if (document.layers||ns6) {
    return parseInt(e.pageX+10)
  } else {
    return (parseInt(event.clientX+10) + parseInt(document.body.scrollLeft))
  }
}
// Get the vartical position of the mouse
function getMouseYPos(e) {
  if (document.layers||ns6) {
    return parseInt(e.pageY)
  } else {
    return (parseInt(event.clientY) + parseInt(document.body.scrollTop))
  }
}
//Place the image and start timer so that it disappears after a period of time
function showKisser(x,y) {
  var processedx=ns6? Math.min(x,window.innerWidth-75) : docAll? Math.min(x,document.body.clientWidth-55) : x
  if (curKisser >= kisserCount) {curKisser = 0}
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".left = " + processedx)
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".top = " + y)
  eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".visibility = '" + showbitK + "'")
  if (eval("typeof(kissDelay" + curKisser + ")")=="number") {
    eval("clearTimeout(kissDelay" + curKisser + ")")
  }
  eval("kissDelay" + curKisser + " = setTimeout('hideKisser(" + curKisser + ")',kissDelay)")
  curKisser += 1
}
//Make the image disappear
function hideKisser(knum) {
  eval(docbitK + "kisser" + knum + docbitendK + stylebitK + ".visibility = '" + hidebitK + "'")
}

function kissbegin(){
//Let the browser know when the mouse moves
if (docLayers) {
  document.captureEvents(Event.MOUSEMOVE)
  document.onMouseMove = doKisser
} else {
  document.onmousemove = doKisser
}
}
window.onload=kissbegin
// decloak -->

document.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"URL OF UR CSS FILE HERE\" />');

//<!-- cloak
// Add all DIV's of hearts
if (document.all||document.getElementById||document.layers){
for (k=0;k<kisserCount;k=k+2) {
  document.write('<div id="kisser' + k + '" class="kisser"><img src="' + theimage + '" alt="" border="0"></div>\n')
  document.write('<div id="kisser' + (k+1) + '" class="kisser"><img src="' + theimage2 + '" alt="" border="0"></div>\n')
}
}

// decloak -->


EDIT THE CODE FIRST BEFORE YOU SAVE IT AS .JS

Things to change

URL OF THE FILE OF UR IMAGE HERE
URL OF THE FILE OF UR IMAGE HERE

URL OF UR CSS FILE HERE


THEN SAVE IT AS .JS

UR DONE^

lmao ENJOY^
Back to top Go down
batangfriendster12
batangfriendster12
Promoter
Male

> : Woa...Im a PROMOTER.. xD
Posts : 607
Age : 27
Location : Pasig City
Mood : Bored
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-10-03
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/jakeardaniel

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:23 pm

nice one!!

^^
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:28 pm

^Thanks IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 35724
Back to top Go down
batangfriendster12
batangfriendster12
Promoter
Male

> : Woa...Im a PROMOTER.. xD
Posts : 607
Age : 27
Location : Pasig City
Mood : Bored
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-10-03
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/jakeardaniel

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:30 pm

kuya jiroo..


can u tell me where can i make my own background with my name just like yours
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Malaysia
Reg-Date : 2008-09-17
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue100 / 100100 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/wanted86

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:33 pm

nice trick jiro..
if i combine the trail cursor with the cirlce text cursor,is it ok??
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:40 pm

rexon wrote:
nice trick jiro..
if i combine the trail cursor with the cirlce text cursor,is it ok??

I dont know..i didnt try that pa^

@Batang friendster~> www.picnik.com

dance
Back to top Go down
batangfriendster12
batangfriendster12
Promoter
Male

> : Woa...Im a PROMOTER.. xD
Posts : 607
Age : 27
Location : Pasig City
Mood : Bored
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-10-03
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/jakeardaniel

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:44 pm

please make me one..xD IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 40697
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:48 pm

^Woahhh..madali lng..try it^

www.picnik.com
Back to top Go down
batangfriendster12
batangfriendster12
Promoter
Male

> : Woa...Im a PROMOTER.. xD
Posts : 607
Age : 27
Location : Pasig City
Mood : Bored
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-10-03
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/jakeardaniel

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 3:50 pm

jiro0212 wrote:
^Woahhh..madali lng..try it^

www.picnik.com

wenkz^_^

ill just try

pero pag d ko kaya

pagawaa nalang

^_^



JaKe Is d Name i waNt 2 Put^_^
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Malaysia
Reg-Date : 2008-09-17
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue100 / 100100 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/wanted86

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 4:00 pm

^
^
^
^
u can do it batang....

learn it..
heee..
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 163720
Back to top Go down
batangfriendster12
batangfriendster12
Promoter
Male

> : Woa...Im a PROMOTER.. xD
Posts : 607
Age : 27
Location : Pasig City
Mood : Bored
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-10-03
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/jakeardaniel

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 4:04 pm

ehehe


tnx for the support ive made one^_^

xD


but i dunnoh how to make a buttons ^_^


or image mapping please teach me guys ^_^


tnx tnx tnx kuya jiroooo whats yer FS rexon

^_^
Back to top Go down
rexon
rexon
Promoter
Male

> : thx my bunny~~~
Posts : 1573
Age : 100
Location : soul society
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Malaysia
Reg-Date : 2008-09-17
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue100 / 100100 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/wanted86

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 4:10 pm

batangfriendster12 wrote:
ehehe


tnx for the support ive made one^_^

xD


but i dunnoh how to make a buttons ^_^


or image mapping please teach me guys ^_^


tnx tnx tnx kuya jiroooo whats yer FS rexon

^_^

emm,
to learn make button link,
go here:
https://hidecodesgalore.forumotion.net/media-box-profile-html-tips-f10/mbptneed-help-with-links-add-comment-message-buttons-t625.htm

well,
iff u wan to add me,

giv me ur emel.
let me add you...k
Back to top Go down
prince_zurich101
prince_zurich101
Graphic Designer
Male

> : I love HCG!
Posts : 252
Age : 35
Reg-Date : 2008-09-10
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 110
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/zurich101

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 4:44 pm

cool..... dude.....


Keep Sharing....
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 6:10 pm

^Thank you IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 35724
Back to top Go down
punk_ii_girl
punk_ii_girl
HCG Geek
Female

> : I love HCG!
Posts : 626
Age : 103
Mood : Happy
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Philippines-1
Reg-Date : 2008-09-11
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/38755596

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 6:51 pm

NYC jiro.. IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 549220
Back to top Go down
misz.camiLLe
misz.camiLLe
HCG VIP Member
Female

> : ANTOK NEMEN SI AVATAR KO :))
Posts : 21026
Age : 114
Mood : Happy
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel UnitedStatesofAmericaUSA-1
Reg-Date : 2008-09-08
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue10 / 10010 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/42352016

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 9:02 pm

COOL XD
Back to top Go down
avatar
JirO™
Global Mod
Male

> : >:)
Posts : 2580
Age : 31
Location : There :O
Mood : Blissful
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Japan
Reg-Date : 2008-09-05
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/41409324

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 9:14 pm

hohoho xD..solomot po^^ IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 35724
Back to top Go down
mawiaa
mawiaa
HCG Member
Female

> : I love HCG!
Posts : 15
Location : sa may kanto. :)
Mood : Disappointed
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Philippines-1
Reg-Date : 2008-10-21
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.profiles.friendster.com/magi143

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 21, 2008 10:24 pm

hey,.(: can u help me, or can u tell e how to make that thing on ur layout.. i mean.. the mp3?.. LOL. can u teach me how to do it.. thanks.. IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 192262
Back to top Go down
ella_gumamela06
ella_gumamela06
HCG Freak
Female

> : I love HCG!
Posts : 119
Age : 28
Location : beside Ü..
Reg-Date : 2008-10-11
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/mellagumamela

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeThu Oct 23, 2008 7:15 pm

yeah!
Back to top Go down
ella_gumamela06
ella_gumamela06
HCG Freak
Female

> : I love HCG!
Posts : 119
Age : 28
Location : beside Ü..
Reg-Date : 2008-10-11
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/mellagumamela

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeFri Oct 24, 2008 10:31 pm

NICE

lurve it kuia jiro
Back to top Go down
dollxxxcore
dollxxxcore
HCG Addict
Female

> : yea.whatever. x))
Posts : 244
Age : 31
Location : quezon city
Mood : Frustrated
Reg-Date : 2008-09-16
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/forsakenfncker

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeFri Oct 24, 2008 10:51 pm

great .. ^^,
Back to top Go down
ella_gumamela06
ella_gumamela06
HCG Freak
Female

> : I love HCG!
Posts : 119
Age : 28
Location : beside Ü..
Reg-Date : 2008-10-11
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com/mellagumamela

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeSun Oct 26, 2008 3:22 pm

i lÜv it!
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 364844
Back to top Go down
eysi12
eysi12
HCG Member
Male

> : I love HCG!
Posts : 36
Age : 33
Reg-Date : 2008-10-04
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profile.friendster.com/azers12

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeSun Oct 26, 2008 3:51 pm

waaaaah!!
not working on my profile IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 774492

view this code
Spoiler:
Back to top Go down
iSheenaDrew<33
iSheenaDrew<33
Global Mod
Female

> : Too tired of drama and shit!
Posts : 5748
Age : 101
Location : on your mind? lol
Mood : Disappointed
Country : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel UnitedStatesofAmericaUSA-1
Reg-Date : 2008-09-04
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://www.friendster.com

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeSun Oct 26, 2008 5:55 pm

nice one singkit jiroo. XD
keep it upp. XD
Back to top Go down
nveloso14
nveloso14
Guest
Female

> : I love HCG!
Posts : 8
Age : 33
Reg-Date : 2008-10-25
Forum Warning : IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 010
Contribution :
IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Left_bar_bleue0 / 1000 / 100IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Right_bar_bleue



http://profiles.friendster.com/pin4y

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitimeTue Oct 28, 2008 6:20 am

kuya jiro.. IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 40697
how did you do yours? IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 66147
yung name mo po naka go arround? IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 163720
hehe... IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 801166

btw...thanks for sharing kuya! IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel 47229
you and kuya daryll are the BOMB on HCG! cheer!
Back to top Go down

Sponsored content





IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel Vide
PostSubject: Re: IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel I_icon_minitime

Back to top Go down

IMAGE TRAIL ON YOUR CURSOR^PLUS Change the Color/Font/Size of ur name on ur Control panel

View previous topic View next topic Back to top
Page 1 of 3 Go to page : 1, 2, 3  Next
                         Posting Regulations                         

Permissions in this forum: You cannot reply to topics in this forum
:: Hide Codes Galore :: :: Design And Development :: HCG Design and Development -
Free forum | ©phpBB | Free forum support | Report an abuse | Forumotion.com