Post Counts? Avatar size?
Forum » Help / Forum questions » Post Counts? Avatar size?
started by: kjr39kjr39
on: 1203528959|%e %b %Y, %H:%M %Z|agohover
number of posts: 4
rss icon RSS: new posts
Post Counts? Avatar size?
kjr39kjr39 1203528959|%e %b %Y, %H:%M %Z|agohover

Hi,

is there a way to enable post counts for members of a forum?

Also, is there a way to make the avatars larger by default?

Thanks!

unfold Post Counts? Avatar size? by kjr39kjr39, 1203528959|%e %b %Y, %H:%M %Z|agohover
Re: Post Counts? Avatar size?
hartnellhartnell 1205237873|%e %b %Y, %H:%M %Z|agohover

1. No. Sadly. Not yet.

2. I think you can with CSS. Unfortunately I'm too tired right now to look up how to do it. I've bookmarked this thread.

— Shawn

unfold Re: Post Counts? Avatar size? by hartnellhartnell, 1205237873|%e %b %Y, %H:%M %Z|agohover
Re: Post Counts? Avatar size?
Phil ChettPhil Chett 1205242594|%e %b %Y, %H:%M %Z|agohover

You need to fiddle with your css theme.

the bit you are looking for is in this lot somewhere: ( i think)

/* print user */
.printuser{
}

.printuser a{
    margin-right: 2px;
}

.printuser img.small{
    vertical-align: -0.3em;
    margin: 0;
    width: 15px;
    height:15px;
    z-index:0;
    /* border: 1px solid #777;*/
}

a.avatar-hover,  a.avatar-hover:hover {
    background: none;
    background-image: url(http://www.wikidot.com/common--theme/base/images/background/opacity2.png);
    padding: 8px;
    text-decoration: none;
    font-size: 130%;
    color: black;
    font-weight: bold;
}

a.avatar-hover img{
 vertical-align: middle;
}

a.avatar-hover div{
    position: relative;
}

a.avatar-hover div div{
    position: absolute;
    left: 48px;
    top: 0;
    height: 48px;
    right: 0px;
    width: 100%;
    background-color: white;
    opacity: 0.9;
    filter: alpha(opacity=90);

}

a.avatar-hover div span{
    padding: 0.5em 1em;
    margin: 0 1em;

    background-color: white;
    opacity: 0.9;
    filter: alpha(opacity=90);
    z-index: 30;

}

.printuser a:hover img.large{
    display: block;
}

.printuser .ip{
    font-size: 90%;
}

PHILCHett.gif
unfold Re: Post Counts? Avatar size? by Phil ChettPhil Chett, 1205242594|%e %b %Y, %H:%M %Z|agohover
Re: Post Counts? Avatar size?
hartnellhartnell 1205283838|%e %b %Y, %H:%M %Z|agohover

This will do it, but the image is a smaller, low res version of the avatar, so it doesn't look right.

Thanks Phil.

.printuser img.small{
    vertical-align: -0.3em;
    margin: 0;
    width: 40px;
    height:40px;
    z-index:0;
    /* border: 1px solid #777;*/
}

— Shawn

unfold Re: Post Counts? Avatar size? by hartnellhartnell, 1205283838|%e %b %Y, %H:%M %Z|agohover
new post
Unless stated otherwise Content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.