Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Resizing profile photos to a different aspect ratio?
Thorium
New
Currently all of my profile photos are displaying as 40 x 40 px images, and I want the change that to 40 x 80 though all of the other posts I've seen about this tell me to add a line like this to my config:
$Configuration['Garden']['Thumbnail']['Size'] = 40;
The problem is, that seems to resize both the height and width, which I don't want.
Can anyone help me out here?
Tagged:
0
Comments
you mean the thumbnail or the profile photo on the profile page.
see
http://vanillaforums.org/discussion/comment/233664/#Comment_233664
or you can change css
.ProfilePhotoMedium {
height: 40px;
width: 80px;
}
you would need to rewrite picture method and the jcrop as well, if you want to resize and change aspect in the thumbnail itself.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Sorry, I meant the thumbnails - how would I go about doing that?