MyBB Community Forums

Full Version: online user font size !!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi every one...
how can increase the font size of onlietoday ?!

[attachment=20858]
If you mean is Who's Online, you can do that by editing your index_whosonline template.
thx for that.. bou exactly i want the :who was online today ?!!
any solution pleas ?!! i use online today pulgin and i want to increase size of it ?
Go to: ACP > Templates > Index Templates > index_whosonline_memberbit > and replace the entire code with the following;
<font size="6">{$comma}{$user['profilelink']}{$invisiblemark}</font>

Replace 6 to what ever size you want to give to the text. Smile
It should look like this;
[attachment=20880]
^ That will increase the Who's Online too, not only for Who Was Online Today. But if OP wants it like that, I think he can use it.
(2010-12-21, 02:44 AM)Yaldaram Wrote: [ -> ]Go to: ACP > Templates > Index Templates > index_whosonline_memberbit > and replace the entire code with the following;
<font size="6">{$comma}{$user['profilelink']}{$invisiblemark}</font>

Replace 6 to what ever size you want to give to the text. Smile
It should look like this;

Isn't the <font> tag deprecated? He should probably use something like
<span style="font-size: 13px;">{$comma}{$user['profilelink']}{$invisiblemark}</span>
if he wants to ensure it works properly in all browsers.[/php]
Yes, you are right Firestryke31. Best method is to use <span> tags.