Rounded avatar?

@Brogan
How would you make the resource thumbnail/icon round as well. Thanks
I have this but the background color under the resource thumbs are not rounded.
Code:
.resourceIcon img,
.resourceImage,
.avatar img,
.avatar .img,
.avatarCropper {
border-radius: 50% !important;
}
 
Code:
.avatar img,
.avatar .img,
.avatarCropper {
border-radius: 50px !important;
}

@Brogan
How would you make the resource thumbnail/icon round as well. Thanks
I have this but the background color under the resource thumbs are not rounded.
Code:
.resourceIcon img,
.resourceImage,
.avatar img,
.avatar .img,
.avatarCropper {
border-radius: 50% !important;
}

not working on firefox.. :(
 
Code:
.avatar img, .avatar .img, .avatarCropper {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-khtml-border-radius: 100%;
border-radius: 100%;
}
.avatar img, .avatar .img, .avatarCropper {
background-color: rgb(60, 60, 60);
border: 2px solid rgb(255, 255, 255);
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.4);
-moz-box-shadow: 0 0 3px rgba(0,0,0,0.4);
-khtml-box-shadow: 0 0 3px rgba(0,0,0,0.4);
box-shadow: 0 0 3px rgba(0,0,0,0.4);
background-position: 0 0 !important;
}
img {
-ms-interpolation-mode: bicubic;
}
fieldset, img {
border: 0;
}

This Worked for me. Got the code from @Sheldon Via https://xenadmins.com
 
Code:
.avatar img, .avatar .img, .avatarCropper {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-khtml-border-radius: 100%;
border-radius: 100%;
}
.avatar img, .avatar .img, .avatarCropper {
background-color: rgb(60, 60, 60);
border: 2px solid rgb(255, 255, 255);
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.4);
-moz-box-shadow: 0 0 3px rgba(0,0,0,0.4);
-khtml-box-shadow: 0 0 3px rgba(0,0,0,0.4);
box-shadow: 0 0 3px rgba(0,0,0,0.4);
background-position: 0 0 !important;
}
img {
-ms-interpolation-mode: bicubic;
}
fieldset, img {
border: 0;
}

This Worked for me. Got the code from @Sheldon Via https://xenadmins.com
still not working in FF :(
 
still not working in FF :(
Hum, im not good at coding, but i know i did the round avatar by using the code everybody said to use. Then on my site in my side bar the avatars looked messed up. So thats when i went to a site that had it working properly and read the code and then i tried it out to see if it would work and it did. So i guess i got lucky .
 
I am having a few avatars that are somewhat octagon for some reason after trying to have them rounded as per the code in this thread, any thoughts?


On the members page, members card and view reported content page.

Screen Shot 2015-11-22 at 4.20.24 PM.webp Screen Shot 2015-11-22 at 4.20.39 PM.webp
 
Top Bottom