View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#281
I have this too before.... -moz-border-radius - Should be 10px
Try this option:

Code:
 * Avatars
 */
img.MessageAvatar { 
  width: 64px;
  height: 64px;
  outline-style: solid; 
  outline-width: 4px; 
  outline-offset: -1px; 
  -moz-outline-radius: 13px; 
  padding: 1px;
  vertical-align: middle; 
}

div.MessageAvatar { 
  width: 64px;
  height: 64px;
  -moz-border-radius: 10px; 
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  vertical-align: middle;
}

Last edited by Schturman; 2010-02-24 at 23:11.
 

The Following User Says Thank You to Schturman For This Useful Post: