PDA

View Full Version : avatars


bingocaller
04-08-2011, 06:15 AM
How does one change the size of the avatars- so every member are using the same size.

--------------- Added 1302275895 at 1302275895 ---------------

Any help here ?

Lynne
04-08-2011, 03:42 PM
You set the avatarsize per usergroup in the Usergroup Manager. However, that doesn't stop a user from uploading something that is smaller than the allowed size. If you want them all to look exactly the same in the showthread page, you will need to write some custom CSS to set the size. example for if you use postbit template:
.postbit .postuseravatarlink img {
height: 200px;
width: 200px;
}
You could end up with some odd looking avatars that way.

bingocaller
04-09-2011, 04:54 AM
Thank you Lynne !