2016-01-28, 11:32 PM
Hi,
How can I add my HTML script for the board name (tab text).
I want it to scroll. I already have an script but I am not sure where to add it
So instead of
![[Image: b83a8ac0f9fbf0c3156a9f8fd6ec5c04.png]](https://camo.mybb.com/e760ed6911d4691b252fbbb4b3dc49aeab5ff193/68747470733a2f2f692e6779617a6f2e636f6d2f62383361386163306639666266306333313536613966386664366563356330342e706e67)
I want
![[Image: 5c2b0caedbbe7f39d5cc0e0f52e6b65f.gif]](https://camo.mybb.com/4fe401fbf6e7ff21499204393938d5ce1881324a/68747470733a2f2f692e6779617a6f2e636f6d2f35633262306361656462626537663339643563633065306635326536623635662e676966)
I made it in HTML with a localhost website. I added it to my index.html but MyBB has index.php only
Please help.
Thanks.
(Website in Signature)
How can I add my HTML script for the board name (tab text).
I want it to scroll. I already have an script but I am not sure where to add it
Quote:<script>
<!--
var ScrollMsg= "PrankCalling | The Home of Prankcalls "
var CharacterPosition=0;
function StartScrolling() {
document.title=ScrollMsg.substring(CharacterPosition,ScrollMsg.length)+
ScrollMsg.substring(0, CharacterPosition);
CharacterPosition++;
if(CharacterPosition > ScrollMsg.length) CharacterPosition=0;
window.setTimeout("StartScrolling()",150); }
StartScrolling();
// -->
</script>
So instead of
I want
I made it in HTML with a localhost website. I added it to my index.html but MyBB has index.php only
Please help.
Thanks.
(Website in Signature)