Re: Avatar Crop Tool Only Shows A Portion Of Avatar
thanks to the guys from bp-theme-converts.com (I’m using one of their themes, a child-theme of hybrid) I got my problem fixed. It was an issue with the style.css file of the child-theme. There were some lines missing, so I just added them to my css file and now everything is working fine. The lines are referred to the avatar author, in my case they are:
`
/* Author avatar */
.author-profile .avatar {
float: left;
width: 60px;
height: 60px;
margin-right: 20px;
padding: 4px;
background: #eee;
border: 1px solid #ccc;
}
/* Author avatar */
.left-menu .avatar {
float: left;
width: 150px;
height: 150px;
margin-right: 20px;
padding: 4px;
background: #eee;
border: 1px solid #ccc;
}
`
This fixed my problem, I hope it helps.