i tried every possible code (i think) but i can't seem to get my profile pictures borders round, help?!?!?!
HOW DO I MAKE MY PROFILE PICTURE'S BORDERS ROUND
0 Kudos
i tried every possible code (i think) but i can't seem to get my profile pictures borders round, help?!?!?!
0 Kudos
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
fairycake444 ౨ৎ⋆˚。⋆
/* Makes profile picture rounded*/
.profile-pic {
border-radius: 500px;
overflow: hidden;
}
/* Makes commenter's profile pictures rounded*/
.comments-table td:first-child img {
width: 80px;
border-radius: 500px;
}
/* Makes friend's profile pictures rounded*/
.profile .friends .person img {
border-radius: 500px;
}
Report Comment