vB3 Postbit Legacy - Usergroup Backgrounds

  • Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Radio

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,503
    7,742
    321
    localhost
    Heisenberg submitted a new resource:

    - Postbit Legacy - Usergroup Backgrounds

    vB Version: 3.8.4

    Now, you can make any usergroups use these backgrounds. You will have to design your own, of course, but you can assign them however you would like. In the case of my forum, we have them set-up for administrators. You could make a separate image for staff members, reg users, banned users, whatever you need. You can also duplicate it and assign different images for different colored styles. I'll show you how below.

    Here's how to do it:
    --...

     
    Last edited:

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,503
    7,742
    321
    localhost
    Update:
    If you would like to assign multiple background images to multiple usergroups, see this post. User down.low explains very well how to achieve this result!

    I had this problem when adding more then one group. What you are doing wrong is adding the following code to many times- there should only be 1 instance of this code:

    Code:
    <td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">

    Here is a code for 1 background/group(after changing the red):

    Code:
    [COLOR=#ff0000][B]In your postbit_legacy[/B][/COLOR][COLOR=#ff0000].[/COLOR]
    
            <if condition="is_member_of($post, [COLOR=Red]groupid[/COLOR])">
            <td class="[COLOR=Red]css[/COLOR][COLOR=Red] name1[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
            <else />
            <td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"></if>
    Code:
    [COLOR=#ff0000][B]And this code (after changing the red) would have to be in your additional css.
    
    
    [/B][/COLOR][COLOR=Red].css name1[/COLOR] {
    background: #000000 url([COLOR=Red]image path[/COLOR]);
    background-repeat: repeat;
    border-left: solid 0px #[COLOR=Red]border color[/COLOR];
    border-right: solid 1px #[COLOR=Red]border color[/COLOR];
    }

    Two backgrounds/groups would look like this:

    Code:
    [COLOR=#ff0000][B]In your postbit_legacy[/B].[/COLOR]
    
    
            <if condition="is_member_of($post, [COLOR=Red]groupid2[/COLOR])">
            <td class="[COLOR=Red]css[/COLOR][COLOR=Red] name2[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
            <else />
            <if condition="is_member_of($post, [COLOR=Red]groupid1[/COLOR])">
            <td class="[COLOR=Red]css name1[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
            <else />
            <td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"></if>[COLOR=Red]</if>[/COLOR]

    Notice: I had to add the additional </if> to the very end!

    Code:
    [COLOR=#ff0000][B]And this code (after changing the red) would have to be in your additional css:[/B][/COLOR]
    [COLOR=Red] 
    
    .css name1[/COLOR] {
     background: #000000 url([COLOR=Red]image path[/COLOR]);
     background-repeat: repeat;
     border-left: solid 0px #[COLOR=Red]border color[/COLOR];
     border-right: solid 1px #[COLOR=Red]border color[/COLOR];
     }
    [COLOR=Red].css name2[/COLOR] {
      background: #000000 url([COLOR=Red]image path[/COLOR]);
      background-repeat: repeat;
      border-left: solid 0px #[COLOR=Red]border color[/COLOR];
      border-right: solid 1px #[COLOR=Red]border color[/COLOR];
      }

    Three backgrounds/groups would look like this:

    Code:
    [COLOR=#ff0000][B]In your postbit_legacy[/B].[/COLOR]
    
    
            <if condition="is_member_of($post, [COLOR=Red]groupid3[/COLOR])">
             <td class="[COLOR=Red]css[/COLOR][COLOR=Red] name3[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
             <else />
            <if condition="is_member_of($post, [COLOR=Red]groupid2[/COLOR])">
            <td class="[COLOR=Red]css[/COLOR][COLOR=Red] name2[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
            <else />
            <if condition="is_member_of($post, [COLOR=Red]groupid1[/COLOR])">
            <td class="[COLOR=Red]css name1[/COLOR]" width="175" style="border: $stylevar[cellspacing]px solid $stylevar [tborder_bgcolor]; border-top: 0px; border-bottom: 0px id="td_post_$post[postid]">
            <else />
            <td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px"></if>[COLOR=#ff0000]</if></if>[/COLOR]

    Notice: I had to add the additional </if> to the very end (AGAIN)!!

    Code:
    [COLOR=#ff0000][B]And this code (after changing the red) would have to be in your additional css:
    
    
    [/B][/COLOR][COLOR=Red] .css name1[/COLOR] {
     background: #000000 url([COLOR=Red]image path[/COLOR]);
     background-repeat: repeat;
     border-left: solid 0px #[COLOR=Red]border color[/COLOR];
     border-right: solid 1px #[COLOR=Red]border color[/COLOR];
     }
    [COLOR=Red].css name2[/COLOR] {
      background: #000000 url([COLOR=Red]image path[/COLOR]);
      background-repeat: repeat;
      border-left: solid 0px #[COLOR=Red]border color[/COLOR];
      border-right: solid 1px #[COLOR=Red]border color[/COLOR];
      }
    [COLOR=Red].css name3[/COLOR] {
       background: #000000 url([COLOR=Red]image path[/COLOR]);
       background-repeat: repeat;
       border-left: solid 0px #[COLOR=Red]border color[/COLOR];
       border-right: solid 1px #[COLOR=Red]border color[/COLOR];
       }
     
    Thread starter Similar threads Forum Replies Date
    ven0m vB3 Postbit Legacy - Signature Inside a Cell [3.8.x] Temp Mods 0
    ven0m vB3 Two Column Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Email to Friend, Print Version, Subscribe Thread in Postbit/Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Clan Tag in postbit legacy [3.8.x] Temp Mods 0
    ven0m vB3 Excellent Postbit Legacy ( Pro ) [3.8.x] Temp Mods 0
    ven0m vB3 Using Postbit and Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Legacy Clean & Centered [3.8.x] Temp Mods 0
    ven0m vB3 Pro. Postbit Legacy [3.8.x] Temp Mods 1
    ven0m vB3 Pro. Postbit Legacy "Thank You" addition [3.8.x] Temp Mods 0
    ven0m vB3 Updated Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Legacy Alignment (Centered + 2 Columns) [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Legacy Redone [3.8.x] Temp Mods 0
    ven0m vB3 Social Group Discussions Like Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Legacy edit [3.8.x] Temp Mods 0
    ven0m vB3 New Tekno Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Legacy Change (1.0) [3.8.x] Temp Mods 1
    ven0m vB3 Blue Postbit Legacy - vBulletin Hocasi [3.8.x] Temp Mods 0
    ven0m vB3 New Postbit Legacy v1.2 [3.8.x] Temp Mods 0
    ven0m vB3 PS3 Gamercard in Postbit Legacy [3.8.x] Temp Mods 0
    ven0m vB3 bookmark button in Postbit (works on all vb versions) [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Cluster [3.8.x] Temp Mods 0
    ven0m vB3 DVBcard picture in postbit [3.8.x] Temp Mods 0
    ven0m vB3 Postbit - Signature Inside a Cell [3.8.x] Temp Mods 0
    ven0m vB3 Allow user to select what is shown in their postbit. [3.8.x] Temp Mods 0
    ven0m vB3 Show XboxLive Gamertag In Postbit [3.8.x] Temp Mods 0
    ven0m vB3 Twitter Postbit by YoBroMoFo [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Popup Menu - Add Admin/Mod Options [3.8.x] Temp Mods 0
    ven0m vB3 Call of duty 5 prestige on postbit [3.8.x] Temp Mods 0
    ven0m vB3 PSN Portable ID in Postbit [3.8.x] Temp Mods 0
    ven0m vB3 UKBL ~ Selling on Ebay Link in Postbit [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Clean and nice User Info [3.8.x] Temp Mods 0
    ven0m vB3 Better Postbit Template [3.8.x] Temp Mods 0
    ven0m vB3 UKBL ~ Twitter profile link on Postbit ~ Clickable [3.8.x] Temp Mods 0
    ven0m vB3 Agth ~ Postbit Add Facebook Fan Page [3.8.x] Temp Mods 0
    ven0m vB3 Social Networks in Postbit [3.8.x] Temp Mods 0
    ven0m vB3 MW2 Prestige Ranks in Postbit [3.8.x] Temp Mods 0
    ven0m vB3 Simple postbit ICQ fix [3.8.x] Temp Mods 0
    ven0m vB3 [find all threads started by x member] in postbit & postbit_legacy [3.8.x] Temp Mods 0
    ven0m vB3 UKBL ~ FaceBook profile link on Postbit [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Mini Box: Member Info Icons [3.8.x] Temp Mods 0
    ven0m vB3 YouTube Subscribe in Postbit [3.8.x] Temp Mods 0
    ven0m vB3 Call of duty prestiges in postbit [3.8.x] Temp Mods 0
    ven0m vB3 Postbit Custom Template! [3.8.x] Temp Mods 0
    ven0m vB3 Add Your LinkedIn Account To Your postbit/postbit_legacy [3.8.x] Temp Mods 0
    ven0m vB3 panoramaharem new postbit [3.8.x] Temp Mods 0
    ven0m vB3 Different Postbit on first post based on prefix (news thread) [3.8.x] Temp Mods 0
    ven0m vB3 Add (OP) to thread starter's postbit [3.8.x] Temp Mods 0
    ven0m vB3 My "Thank You Hack" Postbit Template [3.8.x] Temp Mods 0
    ven0m vB3 Usergroup Color Table Legend [3.8.x] Temp Mods 0
    ven0m vB3 Usergroup Colourbar [3.8.x] Temp Mods 0
    Similar threads