MyBB Community Forums

Full Version: No online character?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I add to my forum the little online character next to my username?

www.RuneGear.net

It doesn't appear in the postbit.

Thank you.

Also, see where it says where you are, like:

MyBB Community Forums / MyBB 1.4 Series / MyBB 1.4 General Support / No online character?

How do I get the "/" on my forum?
You mean the little blue-ish guy ? to the right of your username
Yes, that...
(2010-07-11, 06:14 AM)The Elite Wrote: [ -> ]How do I get the "/" on my forum?

Thats already in your forum, but the color is white, thats why its matching with the background and you can't see it.
(2010-07-11, 08:36 AM)Sukanjan.K Wrote: [ -> ]
(2010-07-11, 06:14 AM)The Elite Wrote: [ -> ]How do I get the "/" on my forum?

Thats already in your forum, but the color is white, thats why its matching with the background and you can't see it.

How do I change it's colour?
In global.css:

.navigation {
	color: white;
	font-size: 13px;
	font-weight: bold;
}

change to:

.navigation {
	color: black;
	font-size: 13px;
	font-weight: bold;
}

For the online thing, add {$post['onlinestatus']} after:

<strong><span class="largetext">{$post['profilelink']}</span></strong>

in the postbit and postbit_classic template.
(2010-07-11, 11:22 AM)MattRogowski Wrote: [ -> ]In global.css:

.navigation {
	color: white;
	font-size: 13px;
	font-weight: bold;
}

change to:

.navigation {
	color: black;
	font-size: 13px;
	font-weight: bold;
}

For the online thing, add {$post['onlinestatus']} after:

<strong><span class="largetext">{$post['profilelink']}</span></strong>

in the postbit and postbit_classic template.

All fixed now, thank you very much.