Script for blog title


If  you want to costumize your blog title, follow instuctions bellow:


Loggin to Blogger
Click Layout->EditHTML
Search for </body> tag
Place bellow script before </body> tag

<script type='text/javascript'>
msg ="Welcome to 9Ninezip";
msg ="..."+msg;pos= 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos >  msg.length) pos = 0
window.setTimeout("scrollMSG()",200);
}
scrollMSG();
    </script>

Replace Welcome to 9NineZip, with your text.
Preview and Save your template.
Done.

0 comments:

Post a Comment