Heisenberg submitted a new resource:
You must be registered for see links
- Enables large-sized avatars in posts with tall aspect ratio, good for portraits.Admin CP -> Appearance -> Templates -> message_macros
Replace the avatar code:
Code:<xf:avatar user="$user" size="m" defaultname="{$fallbackName}" itemprop="image" />
With this:
Code:<xf:avatar user="$user" size="l" defaultname="{$fallbackName}" itemprop="image" />
Admin CP -> Appearance -> Templates -> quick_reply_macros
Replace the avatar code:
Code:<xf:avatar user="$user" size="{{ $simple ? 's' : 'm' }}" defaultname="" />
With this...
You must be registered for see links
