yoris's profile picture

Published by

published

Category: Web, HTML, Tech

HOW DO I MAKE MY PROFILE PICTURE'S BORDERS ROUND

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 ౨ৎ⋆˚。⋆

fairycake444 ౨ৎ⋆˚。⋆'s profile picture

/* 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