Login     Sign up
Icon preview dimension
Fiore Cappone (@strategy7)
Join date: Sep 27th 2010
Community posts: 15
View Profile
Send Message

How to modify the dimension of the mini icon user profile?

Ty

Fiore

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

file: includes/libs/account_module.php

function avatar

in this part the profile pictures are actually created

small size 50x50 and normale size 200x200

but you can also use the function avatar() which you find in includes/libs/common_inc.php.

it displays the avatar in another size.

165 months ago
Fiore Cappone (@strategy7)
Join date: Sep 27th 2010
Community posts: 15
View Profile
Send Message

Ty,
but if I want to change the size and the numbers per row in home in the Recent Logins box?
I use the 4.1

165 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

that is in page.tpl.php of your theme.

[code]
//## display recent logged members
$res = sql_query("SELECT from ".tb()."accounts order by lastlogin desc limit 20");
/

//use this line if you want to display members who have avatars.
$res = sql_query("SELECT from ".tb()."accounts where avatar!='' order by lastlogin desc limit 20");
/
while($row = sql_fetch_array($res)) {
$recentlogin .= avatar($row,25);
}
[/code]

limit 20 is the max of avatars you have now set to 20
avatar($row,25) size of the avatar is now set to 25

165 months ago
Fiore Cappone (@strategy7)
Join date: Sep 27th 2010
Community posts: 15
View Profile
Send Message

Ty again,
now I have 3 icons per row , how to change to 4 ?
Ty

165 months ago
Fiore Cappone (@strategy7)
Join date: Sep 27th 2010
Community posts: 15
View Profile
Send Message

Found it
I have modified the left column from 120 to 150px
Ty

165 months ago