Is there like a code to remove the square from your account if you want to make your icon circle? I’ve been tryna figure out and it seems u are able to !! ; ;
im not the best with coding i fear, i simply used a mask code my girlfriend @lace gave to me. im sure theres other people that know the code though!
Leave a comment
the simple way to do it is just:
.profile_avatar {
box-shadow: none;
}
but Angie seems to be using a somewhat more complex code that actually turns a square image into a circle:
.avatar {
background: #FE82B624;
-webkit-mask-image: url('https://i.imgur.com/1PjqQS6.png');
-webkit-mask-size: 190%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
border-radius: 50%;
}
Blub blub blub