1. Copy this first.
<script language=javascript>
msg = "YOUR BLOG TITLE";
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>
2. Login to Blogspot. Go to Design and click Page Elements. Next, click add gadget and choose HTML/JAVA SCRIPT.
3.Paste the code and ignore the title. Change the 'YOUR BLOG TITLE' with any words that you like to.Click Save and you done!
0 comments:
Post a Comment