By Avinash on Monday, 18 August 2014
Posted in Technical Issues
Likes 0
Views 663
Votes 0
Hi Guys,

I am trying to display a larger avatar in the user list... I modified the getavatar() to download the larger avatar. But I can still only see the small avatar.... any ideas?

regards
Avinash
Hello Avinash,

I am sorry for the late reply.
You can put this CSS code in your current Joomla template and see how it goes.
div#fd .es-item-detail {
margin-left: 39px;
}
Hope this will help.
Thanks.
·
Tuesday, 19 August 2014 16:15
·
0 Likes
·
0 Votes
·
0 Comments
·
hey avinash,
looking at the code in your site you already successfully pull in the large avatar.
the reason why you still see it in that small size is coming from the css styles. there the avatar img is still using the 36px for height and width and the wrapper is set to 40px. if you change these values then it will display the image bigger.

these are the 2 rules you might want to change:
body div#fd.es .es-avatar
body div#fd.es .es-avatar img

hope that helps and have a nice day
·
Monday, 18 August 2014 05:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alex,

Thanks for the tip... I made the required changes and have a larger avatar displaying

body div#fd.es .es-avatar img {
height: 80px;
width: 80px;
}

body div#fd.es .es-avatar {
width: 90px;
height:90px;
}


But the issue is that the content is not aligned.... like before the space has increased for the avatar but the content is not aligned.... as shown in the attached image...simply put the blue line has not shifted.....

Thanks,
Avinash
·
Monday, 18 August 2014 22:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Alex and Mohd.! Cheers
·
Tuesday, 19 August 2014 20:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating, glad that your issues are resolved now
·
Wednesday, 20 August 2014 00:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post