SOURCE
tagged as:
#tutorials 

Want some cursor :D

click here

copy the code then put it on you description box :D

posted 8 hours ago on 01 Jun
SOURCE
tagged as:
#tutorials 

Endless Scrolling

<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>

copy the code then put it on your description box

posted 8 hours ago on 01 Jun
SOURCE
tagged as:
#Tutorials 

How to change the color in highlighting/selecting text on your page.

Follow her first

Copy these codes first: 

<!—THATLITTLEPANDAGIRL|TUMBLR—>

<!—CODES START HERE—>

::selection {

        background: #COLORCODEHERE; /* Safari */

        }

::-moz-selection {

        background: #COLORCODEHERE; /* Firefox */

}

<!—CODES END HERE—>

<!—THATLITTLEPANDAGIRL|TUMBLR—>

Second thing to do is to Replace the word COLORCODEHERE with the code of the desired color. and Paste the codes above the </style> tag.

posted 4 months ago on 13 Jan
SOURCE
tagged as:
#Tutorials 

Blinking Titlebar

Follow her first

Step 1. Tumblr » Customize » Themes » Custom HTML code

Step 2. Copy and paste this code AFTER the <head> tags.

<script type=”javascript”>

function tb3_makeArray(n){

   this.length = n;

   return this.length;

}

tb3_messages = new tb3_makeArray(3);

tb3_messages[0] = “TEXT HERE”;

tb3_messages[1] = “TEXT HERE”;

tb3_messages[2] = “TEXT HERE”;

tb3_rptType = ‘infinite’;

tb3_rptNbr = 5;

tb3_speed = 5;

tb3_nbrOneMsg = 5;

var tb3_currMsg=0;

var tb3_timerID = null;

var tb3_switcher = 0;

var tb3_countOneMsg=0;

var tb3_counter=1;

function tb3_blinktitle(){

if (tb3_countOneMsg == tb3_nbrOneMsg){

   if (tb3_currMsg == tb3_messages.length-1){

      if ((tb3_rptType == ‘finite’) && (tb3_counter==tb3_rptNbr)){

         clearTimeout(tb3_timerID);

         return;

      }

      tb3_counter++;

      tb3_currMsg=0;

      tb3_countOneMsg=0;

   }

   else{

      tb3_currMsg++;

      tb3_countOneMsg=0;

   }

}

if (tb3_switcher==0){

   document.title = tb3_messages[tb3_currMsg];

   tb3_switcher=1;   

   tb3_countOneMsg++;

}

else{

   document.title = “______________________________________________________________”;

   tb3_switcher=0;

}

tb3_timerID = setTimeout(“tb3_blinktitle()”, tb3_speed)

}

tb3_blinktitle();

</script>

NOTE: Make sure to retype the quotation marks!

posted 4 months ago on 12 Jan
SOURCE
tagged as:
#Tutorials 

Typing Marquee

Follow her first

Click this put it between your <body> and </body> tags. You can put it also in your sidebar if you want :”>

Note: Change the Color That you Like :”>

posted 4 months ago on 12 Jan
SOURCE
tagged as:
#Tutorials 

Typewriter Title Bar Effect

Follow her first

Copy and paste the codes between the <head> tags

<script language=”javascript”>

var titletext=”TEXT HERE”

var repeat=true;    // SET TO true TO REPEAT, false TO “TYPE” OUT TITLE ONLY ONCE.

set=setTimeout;

var index=0;

function scrolltitle(){

if(index<=titletext.length){

document.title=titletext.substring(0,index);

index++;

set(‘scrolltitle()’, 200);

}else{

index=0;

if(repeat)set(‘scrolltitle()’,1000);

}}

window.onload=function(){

if(!document.layers)set(‘scrolltitle()’,1000);

}

</script>

posted 4 months ago on 12 Jan