So I was fiddle-farting with CSS coding for another site and I happened across a beautiful code that might actually work for this site..
I'm going to assume this site is running the PHPBB3 version of Forumotion.
You can have all avatars automatically resize by simply adding:
Since the width on this site is generally 200, the admin can determine what height to make it on their own. However!! If you put this at the very end of your CSS sheet, it will automatically resize any of those pesky avatars that are just too large/wide for the forum. So no more bleeding into posts!
I'm going to assume this site is running the PHPBB3 version of Forumotion.
You can have all avatars automatically resize by simply adding:
- Code:
.postprofile dt img {
max-width: 200px;
max-height: 200px;
}
Since the width on this site is generally 200, the admin can determine what height to make it on their own. However!! If you put this at the very end of your CSS sheet, it will automatically resize any of those pesky avatars that are just too large/wide for the forum. So no more bleeding into posts!