Monday, March 14, 2011

How to make text walking on menu bar

How to make text walking on menu bar
1. Log it to your blogger and go to Design >> Edit HTML

2.Make sure you put check mark to “Expand Widget Templates

3.Find this tag by using Ctrl+F </ head>


4. Paste below code before  </ head> tag

<script type='text/javascript'>
//<![CDATA[

msg = " -- Simple Preview ";
msg = " | Blog name -- " + 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  Simple Preview with some your message.
* Replace Blog name with your blog name

5. Now save template you are done.

1 comment:

  1. thnx for this tricks..it helps to get attention of the readers...

    ReplyDelete