how to Putting the username and the rank under the avatar for PunBB Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

    how to Putting the username and the rank under the avatar for PunBB

    Dexo
    Dexo
    New Member


    Male Posts : 7
    Reputation : 1
    Language : Indonesia
    Location : Indonesia

    how to Putting the username and the rank under the avatar for PunBB Empty how to Putting the username and the rank under the avatar for PunBB

    Post by Dexo January 19th 2012, 1:07 pm

    how do i Putting the username and the rank under the avatar for Forum version PunBB
    avatar
    Guest
    Guest


    how to Putting the username and the rank under the avatar for PunBB Empty Re: how to Putting the username and the rank under the avatar for PunBB

    Post by Guest January 19th 2012, 2:19 pm

    Hi!

    Go to Administration Panel => Display => Templates => General => viewtopic_body => Edit => Find:
    Code:
                         <div class="user-ident">
                            <h4 class="username">{postrow.displayed.POSTER_NAME}</h4>
                            <div class="user-basic-info">
                               {postrow.displayed.POSTER_AVATAR}<br />
                               {postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}
                            </div>
                         </div>
    and replace with:
    Code:
                         <div class="user-ident">
                            <div class="user-basic-info">
                               {postrow.displayed.POSTER_AVATAR}<br />
                                                                         <h4 class="username">{postrow.displayed.POSTER_NAME}</h4>
                               {postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}
                            </div>
                         </div>
    Save and publish. Smile