Do you want title bar moving with your own message on it when someone visit your blog?
It's easy, now get to your Blogger 'Layout' and move the tab to 'Edit HTML'.
Now you need to download a script, CLICK HERE. Now open that file with Notepad (If you're using Microsoft Windows Operating System). Grab the code from it onto your Blogger HTML, place it above the <head>
Then, click 'PREVIEW'
Can you see your Blog has new title bar and it is moving?
Okay, don't close the preview screen! I let you know how to edit and add your own message and style below here by these tutorial below.
If you have good skill in Javascript, you may forget these tutorial.
How do i make my own message?
Do you see these code below here on the downloaded script?
message[0] = "Hello";
message[1] = "Welcome to my Blog";
message[2] = "Thank you for visiting";
message[3] = "Don't forget to leave me comment";
message[4] = "Message 4th";
message[5] = "Message 5th";
message[6] = "Message 6th";
message[7] = "Message 7th";
message[8] = "Message 8th";
Nah, you may edit "Hello", "Welcome to my Blog", and anything inside the " sign (or simply, you may edit the code that showed with green color). If you want to add more message, just add message[9] in the next line, if you need to add message again, add message[10] in the next line. Do you understand? Good!
How do i edit the message in the square bracket?
In the downloaded script, you will see these code:
if(s>16){s=1}
if(s==1){document.title='[V] '+T+' [Vektanova]'}
if(s==2){document.title='[Ve] '+T+' [Vektanov]'}
if(s==3){document.title='[Vek] '+T+' [Vektano]'}
if(s==4){document.title='[Vekt] '+T+' [Vektan]'}
if(s==5){document.title='[Vekta] '+T+' [Vekta]'}
if(s==6){document.title='[Vektan] '+T+' [Vekt]'}
if(s==7){document.title='[Vektano] '+T+' [Vek]'}
if(s==8){document.title='[Vektanov] '+T+' [Ve]'}
if(s==9){document.title='[Vektanova] '+T+' [V]'}
if(s==10){document.title='[Vektanov] '+T+' [Ve]'}
if(s==11){document.title='[Vektano] '+T+' [Vek]'}
if(s==12){document.title='[Vektav] '+T+' [Vekt]'}
if(s==13){document.title='[Vekta] '+T+' [Vekta]'}
if(s==14){document.title='[Vekt] '+T+' [Vektan]'}
if(s==15){document.title='[Vek] '+T+' [Vektano]'}
if(s==16){document.title='[Ve] '+T+' [Vektanov]'}
if(C<(16*reps)){
Change the text between ' sign with your own message (simply, you only able to edit the code that showed with green color. If you edit the red color, you'll fail).
Do you want to shorter that? just remove the line that started with if(s==16), if you want to shorter it again, just remove if(s==15) if you have removed if(s==16) before. If you want to make it longer, just add next line with if(s==17)
And see what the last number of if(s==XX) you got? -------- Make sure the if(C<(XX*reps)){ and if(s>XX){s=1} has the same number of the last if(s==XX) --------. (Simply again, the pink text XX must has the same number).
The '+T+' shows you the message that you've made on the previous tutorial section.
How do i change the speed of the message?
Do you see this code on the downloaded script?
var speed = 100
Change 100 with ammount of speed you wish, but we recommend you to use 100.
FINISHING
Now, grab the code that you have edited on the notepad to the Blogger.
See preview, and make sure that is that what you want..