inherit
224632
0
Jun 18, 2017 15:12:47 GMT -8
The Guy who keeps asking stuff
51
August 2015
piercionium
|
Post by The Guy who keeps asking stuff on Nov 14, 2015 10:29:49 GMT -8
I added this code to make avatars appear circular:
.avatar img { border-radius: 100%; }
The problem is, avatars that are shaped too tall/long appear like an oval and only square avatars work.
|
|
inherit
(?)?
188910
0
Jan 26, 2013 13:30:48 GMT -8
♥ ℒʊ√ ♥
Clouds float into my life no longer to carry rain or usher storm but to add color to my sunset sky.
10,458
January 2013
luv
|
Post by ♥ ℒʊ√ ♥ on Nov 14, 2015 18:16:25 GMT -8
You can try adding width and height to the code in a pixel size of your choice or a percentage.
.avatar img { border-radius: 100%; height: 125px; width: 125px; }
or
.avatar img { border-radius: 100%; height: 100%; width: 100%; }
|
|