This manipulates the roundness of all images on the Group Discussions module.
Important Notes:
- Increase or decrease roundness by changing the percentage of the border-radius (bolded).
- 0%= Square corners
- 100%= circle picture
Code:
/* Make group discussions profile images round */
.person-list-item.discussion-list-item .person-list-image,
.discussions .chat-component img{
border-radius: 100%;
}
Comments
Article is closed for comments.