PDA

View Full Version : Just a very little thing


Grover
Fri 2nd Aug '02, 9:21am
Hi,

Just remembered the moment when I accidentely found out that I had a 'Who's Online'-function at my forums..... :p

The thing is..... when you mouse-over the 'Private Messages'-title link at the mainpage, you get a tooltip saying: 'Click here to open your Private Messages Inbox'. It's logic isn't it, because the link says: 'Private Messages' anyway..... but this way it is clear what it does.

But the 'Currently Active Users' -link is somewhat different. It should have a tooltip saying 'Click here to view Who's Online' or something: currently it has no tooltip.

It's just a little thing....
Grover.

Floris
Fri 2nd Aug '02, 11:33am
ACP > Templates > Modify > find forumhome_loggedinusers > [edit] > find:
<a href="online.php?s=$session[sessionhash]">
<normalfont color="{categoryfontcolor}">
<b>Currently Active Users</b>
</normalfont>
</a>

replace that with:
<a href="online.php?s=$session[sessionhash]" title="Click here to view Who's Online right now">
<normalfont color="{categoryfontcolor}">
<b>Currently Active Users</b>
</normalfont>
</a>

done!

Grover
Sat 3rd Aug '02, 1:43am
You!

(I'm curious if I have to do that with VB3 as well....... ;) )

bigmattyh
Sat 3rd Aug '02, 2:32am
Consider it an HTML lesson... now you can use the title attribute wherever you want to have a tooltip. :)

Freddie Bingham
Sat 3rd Aug '02, 3:05am
Originally posted by Grover
You!

(I'm curious if I have to do that with VB3 as well....... ;) ) No I just added it for you.

Grover
Sat 3rd Aug '02, 3:25am
Really great support overhere! I know it was just a very small thing, but I think that more users on my forums will now be aware of the fact that clicking on 'Currently Active Users' will bring you to Who's Online.

Grover.