top



How do i put the user info above the post?

thanks

What do you mean by above the post?

The user information like their avatar, their posts.

i want i to be above the message they post instead of being on the right or left.
i'm using punbb

thanks

Edit the template viewtopic_body in General
Search this and edit it to your liking with html and css

Code:
<div class="user">
                     <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>
                     <div class="user-info">
                        {postrow.displayed.ONLINE_IMG}
                        <!-- BEGIN profile_field -->
                        {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                        <!-- END profile_field -->
                        {postrow.displayed.POSTER_RPG}
                     </div>
                  </div>
Basic html, just edit the div class

Thanks for your help but i don't want to edit it, i want it to be placed above the post and i can't find where the post is located in the template

... you have to edit that if you want to place it on top

any idea what i would have to do, i know the very basics of html but i can't figure out for the life of me what to edit in it.

I did it once but i can't recall the code...

I'm still wondering. Do you mean having your posts like how it is here?

I think he wants something like this
user info above post Profile-1
This is a code i created 2 years ago... I lost it though...