This manipulates the roundness of profile pictures on the Group Discussions widget on the Home Screen.
Important Notes:
- Increase or decrease roundness by changing the percentage of the border-radius (bolded).
- 0%= Square corners
- 100%= circle picture
Code:
/*Make discussions widget profile image round */
.widget-discussions-message-image > img {
border-radius: 100%;
}
Comments
Article is closed for comments.