Hi,
The theme uses the get_avatar WordPress function – https://codex.wordpress.org/Function_Reference/get_avatar found in the page-author-box.php here – http://prntscr.com/djpthl. The second value ’96’ being the size of the avatar.
Thanks
I make the changed, but without effect.
The code: http://prnt.sc/djr1ue
Hi,
The avatar is used in multiple places(post’s author box, comments…). I’m not really sure whre would you like to change, but I supposes you want to do this for author box on post page. Here you can find the code in this case – http://screencast.com/t/7rMq9jKw but you also need to use custom css – http://screencast.com/t/Qr5zDhttzet
.single .author-box-wrap .avatar {
width: 150px;
}
.single .author-box-wrap .desc {
margin-left: 167px;
}
Thanks!
Hello,
You should make again this changes at your theme code because the td_module_single_base.php has been overwritten with the latest update and you have lost this modification, as you can see here -> http://screencast.com/t/ZLpN8kmz Please keep in mind that at each update if you do not use the child theme and if the files which are changed cannot be written in child theme, you will lost all of your modifications and then you should make them again.
Thanks for your understanding!
After an update, I have refacted all the modifications and the avatar continues with the same size.
I disabled WP Cache and nothing.
The examples below:
In the current version, the css needs an extra property as there were a few changes to the code Please use this code:
.single .author-box-wrap .avatar {
width: 150px!important;
}
.single .author-box-wrap .desc {
margin-left: 167px!important;
}
.author-box-wrap .avatar{
max-width:167px!important;
}
Thank you!
It´s ok now, but, when I visit the author page, I have a different result.
Do you can see below:
Well these things happen when you change any size of any element. You have to be very careful as there are multiple places that get affected by any change you make.. For this you have to adjust the author box as well for the new dimension.
Use this css:
.author-box-wrap .desc{
margin-left: 160px!important;;
}
Thanks.
