View Single Post
  #7  
Old 17th August 2018, 16:37
MasterMan MasterMan is offline
Senior Member
 
Join Date: Jan 2012
P2P
Posts: 142
Default
FYI, to make it round, just add:


-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;


into your avatar style in style.css and it becomes round or circle shape


@slycrespo2; try the above code and change the 100px into 200px in border radius, like this; border-radius: 200px;


PS. this is my avatar section as follows:


Quote:
/* AVATAR */
.avatar
{
background: #fff;
padding: 4px;
margin: 0 10px 0 0;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
border: 1px solid #E6E6E6;
}

good luck m8

Last edited by MasterMan; 17th August 2018 at 16:40. Reason: code added
Reply With Quote