Post Counts? Avatar size?
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!
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!
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
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%;
}
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