Xenforo Usergroup Markup (with Image)

Discussion in 'Guides, Tips & Tricks' started by Shelley, Oct 29, 2011.

    Shelley Designer

    Gender:
    Female
    Score:
    +454 / 11 / -3
    Summary: The following will allow you to have an image displayed per usergroup.

    Log into your admincp and goto Users >> Usergroups & select the usergroup you wish to apply the markup to. For this demonstration we are applying it to the administrators group.

    Depending on the size of your image you may need to adjust the padding-left accordingly. Insert the following into the User Name CSS box:

    Code:
        background: url(styles/test/xenforo/smilies/smile.png) no-repeat;
        padding-left: 20px;
        font-family: "Lucida Grande" ,Helvetica,Arial,sans-serif;
        font-weight: bold;
        color: #ad0e0e;
    
    Pending on the height/size of your image chances are your image will be cropped/cut off so insert the following into your EXTRA.CSS and adjust the pixel height accordingly.

    Code:
    .username .style3 {
          line-height: 18px;
    }
    


    Step 2 (Optional)

    For those that want to show there usergroup markup in the members online side block this requires a template edit to the following template sidebar_online_users

    Find:
    Code:
    class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{$user.username}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if>
    

    Replace with:
    Code:
    class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{xen:helper richUserName, $user}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if>
    
    memberlist-block-usermarkup.png [IMG]

    mauzao9 New Member

    Gender:
    Male
    Score:
    +1 / 0 / -0
    It's just beatifull. :)

    Dirty New Member

    Gender:
    Male
    Score:
    +0 / 0 / -0
    Hmm, may i get your Images please? I dont know where i can download it.

    PS: I like this Forum, create a Premium Membership, i will buy it for sure.

    Vicros Member

    Gender:
    Male
    Score:
    +1 / 1 / -1
    Nice work here as well. Thanks you.

    picomehanicar New Member

    Gender:
    Male
    Score:
    +0 / 0 / -0
    This is what I needed!

    kopukum New Member

    Gender:
    Male
    Score:
    +0 / 0 / -0
    thanks

    tautvys92 New Member

    Gender:
    Male
    Score:
    +0 / 0 / -1
    Are these icons custom-made or taken from free icon pack, like "fam fam fam" or smth?

    archet Member

    Score:
    +6 / 1 / -0
    The ones on this site are probably custom made. At least they look like Shelley's work.

    Matthew2D New Member

    Gender:
    Male
    Score:
    +9 / 0 / -0
    Just awesome. ;)

Share This Page