Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-08-2007, 12:21 AM
toneloc toneloc is offline
 
Join Date: Jan 2007
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Makes user names bigger in threads, but not homepage

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!
Reply With Quote
  #2  
Old 01-08-2007, 02:12 AM
FunaGuy's Avatar
FunaGuy FunaGuy is offline
 
Join Date: Dec 2005
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Goto,

Style Manger > Postbit Templates > postbit

Find:
Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
Replace:
Code:
<b><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></b>
Find:
Code:
$post[musername]
     </if>
Replace:
Code:
     <b>$post[musername]
     </b>
     </if>
This code to make username bold
Reply With Quote
  #3  
Old 01-08-2007, 02:28 AM
toneloc toneloc is offline
 
Join Date: Jan 2007
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
  #4  
Old 01-08-2007, 02:43 AM
FunaGuy's Avatar
FunaGuy FunaGuy is offline
 
Join Date: Dec 2005
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is the way to make your font bigger.

Goto,

Style Manger > Postbit Templates > postbit

Find:
Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
Replace:
Code:
<font size=5><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>
Find:
Code:
$post[musername]
     </if>
Replace:
Code:
     <font size=5>$post[musername]
     </font>
     </if>
Reply With Quote
  #5  
Old 01-08-2007, 02:44 AM
Shazz's Avatar
Shazz Shazz is offline
 
Join Date: Jun 2006
Location: Utah
Posts: 4,758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<font size=#>
Reply With Quote
  #6  
Old 01-08-2007, 10:58 AM
toneloc toneloc is offline
 
Join Date: Jan 2007
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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-


Quote:
<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?
Reply With Quote
  #7  
Old 01-08-2007, 12:44 PM
WhaLberg's Avatar
WhaLberg WhaLberg is offline
 
Join Date: Nov 2006
Location: Dersaadet
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maybe you should try
HTML Code:
<font size="5">
Reply With Quote
  #8  
Old 01-08-2007, 01:07 PM
toneloc toneloc is offline
 
Join Date: Jan 2007
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For whatever reason, that still did not help. I have this in botht the POSTBIT and POSTBIT LEGACY

Quote:
<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> ?
Reply With Quote
  #9  
Old 01-08-2007, 01:12 PM
WhaLberg's Avatar
WhaLberg WhaLberg is offline
 
Join Date: Nov 2006
Location: Dersaadet
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yours is:

HTML Code:
<font size="5"><a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a></font>
Can you change it as:

HTML Code:
<a href="member.php3?$session[sessionurl]u=$post[userid]"><font size="5">$post[musername]</font></a>
This works fine.
Reply With Quote
  #10  
Old 01-08-2007, 01:46 PM
toneloc toneloc is offline
 
Join Date: Jan 2007
Posts: 52
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:04 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06484 seconds
  • Memory Usage 2,253KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (8)bbcode_code
  • (3)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete