The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#4
|
||||
|
||||
![]()
X is the usergroupid - you would not leave it as X, but change it to the userid you want.
Lets say you want to change the font in the main post area. You would need to find that area. You will find it by looking for <!-- message --> in the postbit, or postbit_legacy depending on which you use, template. Let's assume you don't care about the post title and instead only the color of the post itself. In that case, we will just use the div tag right below the <!-- message --> (it's in red and it's for a 3.8 template - yours may be different): Code:
<!-- message --> <div id="post_message_$post[postid]"> $ad_location[ad_showthread_firstpost_start] $post[message] </div> <!-- / message --> HTML Code:
<if condition="is_member_of($post, 6)"> <div id="post_message_$post[postid]" style="color: yellow;"> <else /> <if condition="is_member_of($post, 5)"> <div id="post_message_$post[postid]" style="color: red;"> <else /> <div id="post_message_$post[postid]" style="color: blue;"> </if> </if> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|