Condensing the Post Profile?

23
Aug
2011
http://www.englistory.com

I am wondering if anyone knows of a way to get rid of the Post count and 'From/location' lines below the avatar, visible when viewing the forum? I'd ideally like a more condensed website page to scroll down?

Or at least move them slightly to the right of the avatar? They take up alot of space when only one short post is made.

As a guest viewing the visible forums, this seems solved already, but when logged in, they appear below the avatar?

Thanks
1 Nera., on 23/08/2011 at 13h40
For the post numbers and location disableing in posts go to AP > Users and grups > Profiles > Location/Post field > Edit it Edit and make it's settings there. Have it display where you wont or not to display at all.

I can not see the 'mistake' as a guest so can not tell you what to move there but you can add this to CSS and move it (deta under avatar) with margins where ever you want

Code:
.pun .user .user-info {
margin-left: -20px;
}


Hope that was what you were looking for. If not, ask again : )
2 Testicles_the_Greek, on 23/08/2011 at 19h37


Thanks, Nera for the first bit.

Here's what I mean, Nera, shows up only when logged in. If I choose to display them, how do I compress or move the ringed sections via the CSS?

Thanks
3 Testicles_the_Greek, on 24/08/2011 at 13h05
Anyone please advise? I tried that code, Nera, and it simply shifts the word 'Posts' further left offscreen (reading visibly as "sts"), and not condensing it (and the 'From' section) beneath the avatar, or to the right of it.

If I can't find a way of either compressing the ringed data (and rank) or moving them to the right of the avatar so that small posts of one sentence don't take acres of space up below the avatar, then I'll probably just get rid.
4 Nera., on 24/08/2011 at 16h19
Hi,

Sorry for the delay, when you say compress that means make them more together?

You should have something like this in CSS

Code:
.pun .user .user-info {
    color: #666666;
    line-height: 1.8em;
}


Lower the line height number to compress it.
5 Testicles_the_Greek, on 24/08/2011 at 17h56
Thanks Nera, I input that and even reduced it to '1.0' but it did nothing?

Is there a way to get the User data to the right of the avatar, in the 'empty space' margin?
6 Nera., on 24/08/2011 at 17h58
No, find yours and change it or try adding this than

Code:
.pun .user .user-info {
    line-height: 1em !important;
}
7 Testicles_the_Greek, on 24/08/2011 at 18h54
Ah, excellent, Nera!! Thanks.

Will this also work if I add ranks, too?

And what of the signatures, if I add them again?

Brilliant step, though! :wouhou:
8 Nera., on 24/08/2011 at 19h16
Should, try it, than we'll see. Not sure what is the problems with sigs? You can put a limit size for them so they'll get resized it they are too big. Is that what you want?
9 Testicles_the_Greek, on 24/08/2011 at 21h46
No, it's the annoying space between the bottom of a post and the actual signature beneath- it seems that sigs remain at the level of the 'From' line even when a small post has been made?

If large posts are made, I expect the sig to be pushed further down the page to accomodate the text, but not when only a few words are posted?
10 Nera., on 24/08/2011 at 22h34
That space is there depending on your profile details not words. Lowering avatar height and any extras bellow profiles would help to lower it if you are refering on the space below what is written in a post and the signature.

Probably it would be removed totally if you would position your profile horizontaly on top of your posts.
11 Testicles_the_Greek, on 30/08/2011 at 20h03
You cured the from/post compression issue (thanks), but since I've resized the avatars, the details still don't move 'up to' the newly-resized avatar (pic).

Also, how would I make the profile 'horizontal'?
12 Testicles_the_Greek, on 31/08/2011 at 20h41
Nera, could you possibly advise further please?
13 Nera., on 01/09/2011 at 15h22
Hi,

Can you make any of your forums topic accesable?

It would look like this if you want it http://movingagain.forumcroatian.com/t11-this-is-a-topic
14 Testicles_the_Greek, on 01/09/2011 at 23h24
Nera, that would be fantastic if you could help me!

Some of my forum boards are accessible, some not as i had suspected plagiarism problems a while ago.

Thanks in advance.
15 Nera., on 02/09/2011 at 07h54
Hi,

Go to your viewtopic_body template and find this part

Code:
{postrow.displayed.POST_DATE_NEW}
                        </h2>
                    </div>

And after it all up to this
Code:
<div class="post-entry">
                            <div class="entry-content">


Delete what is found beetween those two codes. Not the codes I posted here but what is beetween it.

And add this beetween.

Code:
<table width="100%" style="border-bottom: 1px solid #c3dab5;background: #fff url('linktreceslike') bottom repeat-x;"><tr><td width="100px;" style="margin-left: 10px;">{postrow.displayed.POSTER_AVATAR}</td>
<td><div class="user-ident">
                                <h4 class="username">{postrow.displayed.POSTER_NAME}</h4>
                               
                            </div>{postrow.displayed.ONLINE_IMG}<br /{postrow.displayed.POSTER_RANK_NEW}<br />{postrow.displayed.RANK_IMAGE}</td><td style="float: right;"><div class="user-info">
                               
                                <!-- 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></td></tr></table>
                    <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>


Try it on a preview mode first since I can't see any of your topics so can't see will it turn out right away. Be carefull with templates.
16 Testicles_the_Greek, on 02/09/2011 at 17h28
Hi Nera, thanks- this is how it looks.


Is there a way to change;-

The left blank margin width where the avatar was before?
The new avatar background header colour?
The 'post' and 'from' info to the left (if desired?)?

Thanks for all of your great help so far!! Cool
17 Nera., on 02/09/2011 at 17h36
Go to AP > General > Forum configuration > Profile position and set it to Right.

And than try adding this to CSS
Code:
.pun .postmain {
    width: 100%;
}
.pun .user-ident .username {
    position: relative;
}
.postfoot {
    padding: 5px 0;
    width: 100%;
}
18 Polka-Dot-Heart, on 03/09/2011 at 02h02
Sorry to intrude, but I was wondering would those codes work in PHPB33? I'm sorry, I should probably make my own thread right?
19 Nera., on 03/09/2011 at 02h31
No it wont work since it's done through templates.
20 Polka-Dot-Heart, on 03/09/2011 at 02h37
Oh, Hm, I might have to change then. Thank you for answering Nera. Smile
Similar topics
I wanted to show what the members' group is joining (though it can be identified by the colorized username) and I came to a question if it's possible to show it in their post profile and even in their profile?
http://websiteshowcase.forumotion.co.uk/t24-website-showcase As you can see, there is a large space between where my post profile is shown, and the post itself. Here is my CSS: Code: body {     background:#E9E9E9;  
i want post profile left side how to change position for postfile in control pannel ?
Replies 1 to 20 on 24 for "Condensing the Post Profile?"
12
See also
more_less
Informations

24 Replies For the topic :
"Condensing the Post Profile?"

This topic has been viewed 1396 times.

Last message :
23/08/2011 at 13h24 by "Testicles_the_Greek"