Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question Change the max size of avatars
How can I change the maximum avatar display size from its current (on my site and this one) 144px?
I would prefer something a little smaller, say 80 or 100px.
Looking at my site (or this one) with Firebug suggests the size is hard-coded into an element style:
Looking through the code, that size actually gets computed somehow. That's where I get lost :blink:<img style="max-width: 144px; max-height: 144px;" alt="" src="xxxxxxx.jpg" class="kavatar">
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
No, I'm using 1.6.1. Did I post to the wrong forum? Sorry.sozzled wrote: Are you still using K 1.6.0? Upgrade to K 1.6.1.
Please Log in or Create an account to join the conversation.
As you say, there should be an easy answer. Have you changed any of your configuration parameters? Perhaps a reset of your config. params. might be advisable? I didn't see that you were using a third-party product to handle your avatar images. I'm just trying to give you a couple of quick-fix ideas to go on with.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
I did try all of those thoughts. If you check here you will see your own avatar is also 144px, so its pretty standard, and no, I don't use any external avatar software. I prefer a simple life!
Clearly it is not as simple as just setting a single avatar size, because it does need to be re-sized for use in a range of different locations. But I had hoped for at least a max size control somewhere.
It looks to me like the 144px is derived from some other dimension(s) (I got lost once the code moved into javascript, which I struggle with). So if someone could tell me what the calculation works from, I can try changing that.
Please Log in or Create an account to join the conversation.
Try this (add it to your site template, at the end)
#Kunena span.kavatar img {
max-height:80px !important;
}
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.