Log in

View Full Version : Makes user names bigger in threads, but not homepage


toneloc
01-08-2007, 12:21 AM
How do I make the user names big (like in every thread in this forum), WITHOUT changing the size in the main Forum home page under Currently Active Users?

I was able to color them.

Thanks!

FunaGuy
01-08-2007, 02:12 AM
Goto,

Style Manger > Postbit Templates > postbit

Find:

<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>


Replace:

<b><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></b>


Find:

$post[musername]
</if>


Replace:

<b>$post[musername]
</b>
</if>


This code to make username bold :)

toneloc
01-08-2007, 02:28 AM
Thank you, but it did not work.

The usernames did not change in size:( .

I even tried it in the Postbit Legacy. I have vb 3.6.4

FunaGuy
01-08-2007, 02:43 AM
Here is the way to make your font bigger.

Goto,

Style Manger > Postbit Templates > postbit

Find:

<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
Replace:

<font size=5><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>
Find:

$post[musername]
</if>
Replace:

<font size=5>$post[musername]
</font>
</if>

Shazz
01-08-2007, 02:44 AM
<font size=#>

toneloc
01-08-2007, 10:58 AM
I do not know why it is not working.

When I replaced those codes this time, here is what happens-

The line that is normlly underneath the username is moved and it now underneath the group name.

This happens under POSTBIT. I changed the code exactly the same in POSTBIT LEGACY but nothing happened there either.

Here is what my code in the POSTBIT template looks like right now after the adjustment-


<font size=5><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>

$post[onlinestatus]

<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>

<else />

<font size=5>$post[musername]
</font>
</if>


Did I do something wrong?

WhaLberg
01-08-2007, 12:44 PM
Maybe you should try <font size="5">

toneloc
01-08-2007, 01:07 PM
For whatever reason, that still did not help. I have this in botht the POSTBIT and POSTBIT LEGACY

<font size="5"><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>

<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>

<else />

<font size="5">$post[musername]
</font>
</if>

should <else/> be changed to </else> ?

WhaLberg
01-08-2007, 01:12 PM
Yours is:

<font size="5"><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>

Can you change it as:

<a href="member.php3?$session[sessionurl]u=$post[userid]"><font size="5">$post[musername]</font></a>

This works fine.

toneloc
01-08-2007, 01:46 PM
Thanks! That did it!

Also, I must say that in the Usergroups > manage usergroups > members/admin/moderators > edit permissions

When I originally colored and bold them, I also had "font= 12px, verdana,"

I deleted the "12px"

Thank you all for helping me! I really appreciate your assistance and fast responses.