Page 1 of 1

Scrolling Page Title

PostPosted: Sat Jun 10, 2006 10:57 pm
Author: suicico
1st of all hi... to this new site ..

2nd .. today i was playing around with an idea of having the page title scrolling at the top of the page ..
Uselles but i like it <img>

Anyway if anyone want to do so ..
open your Overal_header.tpl (located at the folder of the table you use)

find
Code: Select all
 {NAV_LINKS}  

after add
Code: Select all
 <script>//scrolling page title made by suicico //if you like this and wanna say hi  mail suicico at gmail dot gomvar msg = " {SITENAME} * {PAGE_TITLE}";var pos = 0;var spacer = " ... ";var time_length = 100;function ScrollTitle(){document.title = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);pos++;if (pos > msg.length) pos=0;window.setTimeout("ScrollTitle()",time_length);}ScrollTitle();</script>  

close and save ..
And there you go !!!

The var time_length is the speed of the scrolling ..
play around with it ..
Cheers