Thursday, August 30, 2012

Make the Text in the Title Bar Moving

first, log in to blogger.

then,  from dashboard click More Options > Template > Edit HTML

copy the following code:

<script type='text/javascript'>
//<![CDATA[
msg = " --- welcome to my blog--- ";
msg = " --thanks for visiting--" + 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()",100);
}
scrollMSG();
//]]> </script>

search </head> tag and paste the code right above the </head> tag.

save and done (:

p.s : you can replace the blue text to your own taste and that is the text that will appear in the Address bar.


No comments:

Post a Comment