PDA

View Full Version : Board name in status bar


xs1
06-01-2003, 07:28 PM
is there any hack where i can have my board name or custom name in internet explorer status bar for all forumhome,showthread,forumdisplay?

Xenon
06-01-2003, 07:34 PM
all you have to do is to edit the templates :)

edit: but as i remember it's standart isn't it?

xs1
06-01-2003, 07:55 PM
lol :D which template i have edit and wat code i have to add ?! iam a n00bBie ! :D plzzzzzzzzzzz

:)

Xenon
06-01-2003, 08:15 PM
you have to edit every template which has the <title> tag in it
but as said it's standart in vb, at least in all i saw.

as you can see on our board, it clearly says
vBulletin.org Forum -

Gary King
06-01-2003, 09:01 PM
Today at 05:15 PM Xenon said this in Post #4 (https://vborg.vbsupport.ru/showthread.php?postid=403068#post403068)
you have to edit every template which has the <title> tag in it
but as said it's standart in vb, at least in all i saw.

as you can see on our board, it clearly says
vBulletin.org Forum -

I believe he/she means in the IE status bar (as he/she had stated), meaning at the bottom. Am I correct?

Open headinclude template.

Find:

function showwin(name,size)
{
attrbts = size + ",resizable=yes,toolbar=no,location=no,directories= no,status=no,menubar=no,scrollbars=yes"
window.open(name, "Photos", attrbts);
}

After it, add:

window.status="$bbtitle";

This will place your forum's title in the status bar on every page.

xs1
06-01-2003, 09:13 PM
yes ure correct Gary W

but the codes u asked to find was not there ! :(

Gary King
06-01-2003, 09:24 PM
My mistake, the code I posted was part of a hack I installed.

Find: <meta http-equiv="MSThemeCompatible" content="Yes">


After it, add: <script LANGUAGE="Javascript">
window.status="$bbtitle";
</script>